| 344 | } |
| 345 | |
| 346 | String JsonWriter::convertDoubleArrayToString( const double *arr, unsigned size ) |
| 347 | { |
| 348 | String arrString = "["; |
| 349 | for ( unsigned i = 0; i < size - 1; ++i ) |
| 350 | arrString += convertDoubleToString( arr[i] ) + ", "; |
| 351 | |
| 352 | arrString += convertDoubleToString( arr[size - 1] ) + "]"; |
| 353 | |
| 354 | return arrString; |
| 355 | } |
| 356 | |
| 357 | String JsonWriter::convertSparseUnsortedListToString( SparseUnsortedList sparseList ) |
| 358 | { |
nothing calls this directly
no outgoing calls
no test coverage detected