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;