isFalse

Tells whether the entry value presents false

@nogc @safe pure nothrow
bool
isFalse
(
string value
)

Examples

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

Meta