CF_JType¶
Category: json
GitHub: cute_json.h
Describes the type of a CF_JVal.
Values¶
| Enum | Description |
|---|---|
| JTYPE_NONE | Empty value, representing an uninitialized state. This is not the same as CF_JTYPE_NULL. |
| JTYPE_NULL | Null. |
| JTYPE_INT | Integer. |
| JTYPE_FLOAT | Float. |
| JTYPE_BOOL | Boolean. |
| JTYPE_STRING | String. |
| JTYPE_ARRAY | An Array. |
| JTYPE_OBJECT | A JSON Object. |