Json.opBinaryRight

Performs binary operations between JSON values.

The two JSON values must be of the same run time type or a JSONException will be thrown. Only the operations listed are allowed for each of the types.

Null
none
Bool
&&, ||
Int
+, -, *, /, %
Float
+, -, *, /, %
String
~
Array
~
Object
in
  1. Json opBinaryRight(bool other)
  2. Json opBinaryRight(long other)
  3. Json opBinaryRight(double other)
  4. Json opBinaryRight(string other)
  5. inout(Json)* opBinaryRight(string other)
    struct Json
    inout
    inout(Json)*
    opBinaryRight
    (
    string op
    )
    (
    string other
    )
    if (
    op == "in"
    )
  6. Json opBinaryRight(Json[] other)

Meta