Processing arrays of arrays of integer with rapidjson
问题 Looking to rapidjson documentation this code is suggested to query an array: for (Value::ConstValueIterator itr = a.Begin(); itr != a.End(); ++itr) printf("%d ", itr->GetInt()); However, I have an array of arrays, something like: [ [0,2], [1,2], [4, 5], ... ] I would like to have some two-levels for for processing it, something like this: for (Value::ConstValueIterator itr = a.Begin(); itr != a.End(); ++itr) for (Value::ConstValueIterator itr2 = itr->GetArray().Begin(); itr2 != itr->GetArray(