(L *LState)
| 91 | } |
| 92 | |
| 93 | func mathExp(L *LState) int { |
| 94 | L.Push(LNumber(math.Exp(float64(L.CheckNumber(1))))) |
| 95 | return 1 |
| 96 | } |
| 97 | |
| 98 | func mathFloor(L *LState) int { |
| 99 | L.Push(LNumber(math.Floor(float64(L.CheckNumber(1))))) |
nothing calls this directly
no test coverage detected
searching dependent graphs…