Method Json.opApply

Allows foreach iterating over JSON objects and arrays.

Prototypes

int opApply(
  int delegate(ref Json) 
);

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

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

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

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

const(int) opApply(
  int delegate(ref string, ref const(Json)) 
);

Authors

Sönke Ludwig

Copyright

© 2012 RejectedSoftware e.K.

License

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