pub unsafe extern "C" fn aws_hash_iter_delete(
    iter: *mut aws_hash_iter,
    destroy_contents: bool
)
Expand description

Deletes the element currently pointed-to by the hash iterator. After calling this method, the element member of the iterator should not be accessed until the next call to aws_hash_iter_next.

@param destroy_contents If true, the destructors for the key and value will be called.