yyjson_mut_arr_add_uint

Function yyjson_mut_arr_add_uint 

Source
pub unsafe extern "C" fn yyjson_mut_arr_add_uint(
    doc: *mut yyjson_mut_doc,
    arr: *mut yyjson_mut_val,
    num: u64,
) -> bool
Expand description

Adds an unsigned integer value at the end of the array. @param doc The doc is only used for memory allocation. @param arr The array to which the value is to be inserted. Returns false if it is NULL or not an array. @param num The number to be added. @return Whether successful.