doc.go 507 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. Package math32 provides basic constants and mathematical functions for float32 types.
  3. At its core, it's mostly just a wrapper in form of float32(math.XXX). This applies to the following functions:
  4. Acos
  5. Acosh
  6. Asin
  7. Asinh
  8. Atan
  9. Atan2
  10. Atanh
  11. Cbrt
  12. Cos
  13. Cosh
  14. Erfc
  15. Gamma
  16. J0
  17. J1
  18. Jn
  19. Log10
  20. Log1p
  21. Log2
  22. Logb
  23. Pow10
  24. Sin
  25. Sinh
  26. Tan
  27. Y0
  28. Y1
  29. Everything else is a float32 implementation. Implementation schedule is sporadic an uncertain. But eventually all functions will be replaced
  30. */
  31. package math32