Function isFalse

Test whether the entry value represents false.

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

See Also

isTrue, isBoolean

Example

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