[][src]Function uclicious_libucl_sys::ucl_object_iterate

pub unsafe extern "C" fn ucl_object_iterate(
    obj: *const ucl_object_t,
    iter: *mut ucl_object_iter_t,
    expand_values: bool
) -> *const ucl_object_t

Get next key from an object @param obj object to iterate @param iter opaque iterator, must be set to NULL on the first call: ucl_object_iter_t it = NULL; while ((cur = ucl_iterate_object (obj, &it)) != NULL) ... @return the next object or NULL