File: doc.go

package info (click to toggle)
golang-github-chewxy-math32 1.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: asm: 388; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 507 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Package math32 provides basic constants and mathematical functions for float32 types.

At its core, it's mostly just a wrapper in form of float32(math.XXX). This applies to the following functions:
	Acos
	Acosh
	Asin
	Asinh
	Atan
	Atan2
	Atanh
	Cbrt
	Cos
	Cosh
	Erfc
	Gamma
	J0
	J1
	Jn
	Log10
	Log1p
	Log2
	Logb
	Pow10
	Sin
	Sinh
	Tan
	Y0
	Y1

Everything else is a float32 implementation. Implementation schedule is sporadic an uncertain. But eventually all functions will be replaced

*/
package math32