Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
29
type
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.
35
func
LVIsFalse(v LValue) bool {
return
v == LNil || v == LFalse }
Callers
1
value.go
File · 0.85
Implementers
5
LState
value.go
LFunction
value.go
LNilType
value.go
LTable
value.go
LUserData
value.go
Calls
no outgoing calls
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…