pub unsafe extern "C" fn yyjson_mut_arr_iter_init(
arr: *mut yyjson_mut_val,
iter: *mut yyjson_mut_arr_iter,
) -> boolExpand description
Initialize an iterator for this array.
@param arr The array to be iterated over.
If this parameter is NULL or not an array, iter will be set to empty.
@param iter The iterator to be initialized.
If this parameter is NULL, the function will fail and return false.
@return true if the iter has been successfully initialized.
@note The iterator does not need to be destroyed.