isFalse

Test whether the entry value represents false.

@nogc @safe pure nothrow
bool
isFalse
(
const(char)[] value
)

Examples

assert(isFalse("false"));
assert(isFalse("0"));
assert(!isFalse("not boolean"));

See Also

Meta