JSONValue.opEquals

  1. bool opEquals(JSONValue rhs)
    struct JSONValue
    const @nogc nothrow pure @safe
    bool
    opEquals
    ()
  2. bool opEquals(JSONValue rhs)

Examples

assert(JSONValue(0u) == JSONValue(0));
assert(JSONValue(0u) == JSONValue(0.0));
assert(JSONValue(0) == JSONValue(0.0));

Meta