pub unsafe extern "C" fn aws_hash_table_remove_element(
map: *mut aws_hash_table,
p_value: *mut aws_hash_element
) -> c_int
Expand description
Removes element already known (typically by find()).
p_value should point to a valid element returned by create() or find().
NOTE: DO NOT call this method from inside of a aws_hash_table_foreach callback, return AWS_COMMON_HASH_TABLE_ITER_DELETE instead.