vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Function Json.opBinary

Performs binary operations between JSON values.

Json opBinary(string op) (
  ref const(Json) other
) const;

Json opBinary(string op) (
  Json other
)
if (op == "~");

Json opBinary(string op) (
  bool other
) const;

Json opBinary(string op) (
  long other
) const;

Json opBinary(string op) (
  BigInt other
) const;

Json opBinary(string op) (
  double other
) const;

Json opBinary(string op) (
  string other
) const;

Json opBinary(string op) (
  Json[] other
);

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

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.