| 1179 * @return the size of the array |
1179 * @return the size of the array |
| 1180 * @see cxJsonIsArray() |
1180 * @see cxJsonIsArray() |
| 1181 */ |
1181 */ |
| 1182 cx_attr_nonnull |
1182 cx_attr_nonnull |
| 1183 CX_INLINE size_t cxJsonArrSize(const CxJsonValue *value) { |
1183 CX_INLINE size_t cxJsonArrSize(const CxJsonValue *value) { |
| 1184 return value->array.array_size; |
1184 return value->array.data_size; |
| 1185 } |
1185 } |
| 1186 |
1186 |
| 1187 /** |
1187 /** |
| 1188 * Returns an element from a JSON array. |
1188 * Returns an element from a JSON array. |
| 1189 * |
1189 * |