LVIsFalse returns false if a given LValue is a nil or false otherwise true.
(v LValue)
| 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 } |
| 39 | |
| 40 | // LVAsString returns string representation of a given LValue |
| 41 | // if the LValue is a string or number, otherwise an empty string. |
no outgoing calls
no test coverage detected
searching dependent graphs…