LVIsFalse returns true if a given LValue is a nil or false otherwise false.
(v LValue)
| 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 } |
| 36 | |
| 37 | // LVIsFalse returns false if a given LValue is a nil or false otherwise true. |
| 38 | func LVAsBool(v LValue) bool { return v != LNil && v != LFalse } |
no outgoing calls
no test coverage detected
searching dependent graphs…