[][src]Function mupdf_sys::fz_remove_item

pub unsafe extern "C" fn fz_remove_item(
    ctx: *mut fz_context,
    drop: fz_store_drop_fn,
    key: *mut c_void,
    type_: *const fz_store_type
)

Remove an item from the store.

If an item indexed by the given key exists in the store, remove it.

drop: The function used to free the value (to ensure we get a value of the correct type).

key: The key used to find the item to remove.

type: Functions used to manipulate the key.