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

Allows foreach iterating over JSON objects and arrays.

int opApply (
  scope int delegate(ref Json) del
);

int opApply (
  scope int delegate(ref const(Json)) del
) const;

int opApply (
  scope int delegate(ref ulong, ref Json) del
);

int opApply (
  scope int delegate(ref ulong, ref const(Json)) del
) const;

int opApply (
  scope int delegate(ref string, ref Json) del
);

int opApply (
  scope int delegate(ref string, ref const(Json)) del
) const;
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.