(L *LState)
| 46 | } |
| 47 | |
| 48 | func mathAbs(L *LState) int { |
| 49 | L.Push(LNumber(math.Abs(float64(L.CheckNumber(1))))) |
| 50 | return 1 |
| 51 | } |
| 52 | |
| 53 | func mathAcos(L *LState) int { |
| 54 | L.Push(LNumber(math.Acos(float64(L.CheckNumber(1))))) |
nothing calls this directly
no test coverage detected
searching dependent graphs…