pub unsafe extern "C" fn yyjson_mut_obj_remove_keyn(
obj: *mut yyjson_mut_val,
key: *const c_char,
key_len: usize,
) -> *mut yyjson_mut_valExpand description
Removes all key-value pair from the object with given key. @param obj The object from which the key-value pair is to be removed. @param key The key, should be a UTF-8 string, null-terminator is not required. @param key_len The length of the key. @return The first matched value, or NULL if no matched value. @warning This function takes a linear search time.