MathOpen opens the math library. Usually passed to Require.
(l *State)
| 110 | |
| 111 | // MathOpen opens the math library. Usually passed to Require. |
| 112 | func MathOpen(l *State) int { |
| 113 | NewLibrary(l, mathLibrary) |
| 114 | l.PushNumber(3.1415926535897932384626433832795) // TODO use math.Pi instead? Values differ. |
| 115 | l.SetField(-2, "pi") |
| 116 | l.PushNumber(math.MaxFloat64) |
| 117 | l.SetField(-2, "huge") |
| 118 | return 1 |
| 119 | } |
nothing calls this directly
no test coverage detected