pub unsafe extern "C" fn aws_hash_iter_begin(
    map: *const aws_hash_table
) -> aws_hash_iter
Expand description

Returns an iterator to be used for iterating through a hash table. Iterator will already point to the first element of the table it finds, which can be accessed as iter.element.

This function cannot fail, but if there are no elements in the table, the returned iterator will return true for aws_hash_iter_done(&iter).