MCPcopy Index your code
hub / github.com/yuin/gopher-lua / mathExp

Function mathExp

mathlib.go:93–96  ·  view source on GitHub ↗
(L *LState)

Source from the content-addressed store, hash-verified

91}
92
93func mathExp(L *LState) int {
94 L.Push(LNumber(math.Exp(float64(L.CheckNumber(1)))))
95 return 1
96}
97
98func mathFloor(L *LState) int {
99 L.Push(LNumber(math.Floor(float64(L.CheckNumber(1)))))

Callers

nothing calls this directly

Calls 3

LNumberTypeAlias · 0.85
CheckNumberMethod · 0.80
PushMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…