CF_JType¶
Category: json
GitHub: cute_json.h
Describes the type of a CF_JVal.
Values¶
| Enum | Description |
|---|---|
CF_JTYPE_NONE |
Empty value, representing an uninitialized state. This is not the same as CF_JTYPE_NULL. |
CF_JTYPE_NULL |
Null. |
CF_JTYPE_INT |
Integer. |
CF_JTYPE_FLOAT |
Float. |
CF_JTYPE_BOOL |
Boolean. |
CF_JTYPE_STRING |
String. |
CF_JTYPE_ARRAY |
An Array. |
CF_JTYPE_OBJECT |
A JSON Object. |