Documentation

JW_OBJ_KV

JW_OBJ_KV Description Write a key and nested object inside an existing JSON object. Should be called inside JW_OBJ. Adds commas appropriately based on insertion order.

Read More

JW_STR

JW_STR Description Append a string value (quoted) to the JSON.

Read More

JW_STR_KV

JW_STR_KV Description Write a key and string value into a JSON object.

Read More

List

List Description Double linked list. FIELDS: - head : Reference to head node of linked list. - tail : Reference to tail node of linked list. - copy_init : A user-provided type-specific method to initialize copies of types. - copy_deinit : A user-provided type-specific method deinitialize already created copies of types. - length : Length of this linked list.

Read More

LIST_DATA_TYPE

LIST_DATA_TYPE Description Get data type stored by this list

Read More

LIST_NODE_TYPE

LIST_NODE_TYPE Description Get node type stored by this list

Read More

ListClear

ListClear Description Set list length to 0.

Read More

ListDelete

ListDelete Description Delete item at given index

Read More

ListDeleteLast

ListDeleteLast Description Delete last item from list

Read More

ListDeleteRange

ListDeleteRange Description Delete items in given range [start, start + count)

Read More