pub unsafe extern "C" fn aws_linked_hash_table_init(
    table: *mut aws_linked_hash_table,
    allocator: *mut aws_allocator,
    hash_fn: aws_hash_fn,
    equals_fn: aws_hash_callback_eq_fn,
    destroy_key_fn: aws_hash_callback_destroy_fn,
    destroy_value_fn: aws_hash_callback_destroy_fn,
    initial_item_count: usize
) -> c_int
Expand description

Initializes the table. Sets up the underlying hash table and linked list. For the other parameters, see aws/common/hash_table.h. Hash table semantics of these arguments are preserved.