Method Json.opApply
Allows foreach iterating over JSON objects and arrays.
Prototypes
int opApply( int delegate(ref Json) del ); const(int) opApply( int delegate(ref const(Json)) del ); int opApply( int delegate(ref ulong, ref Json) del ); const(int) opApply( int delegate(ref ulong, ref const(Json)) del ); int opApply( int delegate(ref string, ref Json) del ); const(int) opApply( int delegate(ref string, ref const(Json)) del );
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.