Function isFalse
Test whether the entry value represents false.
bool isFalse
(
scope const(char)[] value
) pure nothrow @nogc @safe;
See Also
Example
assert(isFalse("false"));
assert(isFalse("0"));
assert(!isFalse("not boolean"));