Function Json.opEquals
Compares two JSON values for equality.
If the two values have different types, they are considered unequal.
This differs with ECMA script, which performs a type
conversion before
comparing the values.
Prototypes
bool opEquals(
ref const(Json) other
) const;
bool opEquals(
const(Json) other
) const;
bool opEquals(
typeof(null) _param_0
) const;
bool opEquals(
bool v
) const;
bool opEquals(
int v
) const;
bool opEquals(
long v
) const;
bool opEquals(
std .bigint .BigInt v
) const;
bool opEquals(
double v
) const;
bool opEquals(
string v
) const;
Authors
Sönke Ludwig
Copyright
© 2012-2015 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.