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.opOpAssign

Performs binary operations between JSON values.

void opOpAssign(string op) (
  Json other
) @trusted
if (op == "+" || op == "-" || op == "*" || op == "/" || op == "%" || op == "~");

void opOpAssign(string op, T) (
  T other
)
if (!is(T == Json) && is(typeof(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 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.