Initialises the iter and associate it with object.
JsonObjectIter iter; const gchar *member_name; JsonNode *member_node; json_object_iter_init_ordered (&iter, some_object); while (json_object_iter_next_ordered (&iter, &member_name, &member_node)) { // Do something with member_name and member_node. }
See also: json.object_iter.ObjectIter.init_
the JSON object to iterate over
Initialises the iter and associate it with object.
See also: json.object_iter.ObjectIter.init_