Add helper to extract a C array from JsonArray
JsonArray& jsonArray;
int intArray[10][20];
jsonArray.copyTo(intArray);
Hopefully the template type deduction would solve everything for us...
JsonArray& jsonArray;
int intArray[10][20];
jsonArray.copyTo(intArray);
Hopefully the template type deduction would solve everything for us...