[][src]Function uclicious_libucl_sys::ucl_object_lookup_any

pub unsafe extern "C" fn ucl_object_lookup_any(
    obj: *const ucl_object_t,
    key: *const c_char,
     ...
) -> *const ucl_object_t

Return object identified by a key in the specified object, if the first key is not found then look for the next one. This process is repeated unless the next argument in the list is not NULL. So, ucl_object_find_any_key(obj, key, NULL) is equal to ucl_object_find_key(obj, key) @param obj object to get a key from (must be of type UCL_OBJECT) @param key key to search @param ... list of alternative keys to search (NULL terminated) @return object matching the specified key or NULL if key was not found