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

Interface LValue

value.go:29–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29type LValue interface {
30 String() string
31 Type() LValueType
32}
33
34// LVIsFalse returns true if a given LValue is a nil or false otherwise false.
35func LVIsFalse(v LValue) bool { return v == LNil || v == LFalse }

Callers 1

value.goFile · 0.85

Implementers 5

LStatevalue.go
LFunctionvalue.go
LNilTypevalue.go
LTablevalue.go
LUserDatavalue.go

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…