pub unsafe extern "C" fn ucl_array_delete(
    top: *mut ucl_object_t,
    elt: *mut ucl_object_t
) -> *mut ucl_object_t
Expand description

Removes an element elt from the array top, 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 array ucl object @param elt element to remove @return removed element or NULL if top is NULL or not an array