pub unsafe extern "C" fn ucl_object_pop_key(
    top: *mut ucl_object_t,
    key: *const c_char
) -> *mut ucl_object_t
Expand description

Removes key from top object returning the object that was removed. This object is not released, caller must unref the returned object when it is no longer needed. @param top object @param key key to remove @return removed object or NULL if object has not been found