Iterate the keys of a JSON object with foreach.
Notes:
uint id; foreach (key; json.byKey) if (key == "id") id = json.read!uint;
See Implementation
Iterate the keys of a JSON object with foreach.
Notes: