Skip to content
MapInitWithValueCompareT

MapInitWithValueCompareT

Description

Typed initializer with stored value comparator.

Success

Returns a value of type TYPE_OF(m) initialized with the given key/value comparators and linear probing.

Failure

Function cannot fail.

Usage example (Cross-references)

Usage examples (Cross-references)
    #else
    #    define MapInitT(m, hash_fn, compare_fn) ((TYPE_OF(m))MapInit((hash_fn), (compare_fn)))
    #    define MapInitWithValueCompareT(m, hash_fn, compare_fn, value_compare_fn)                                         \
            ((TYPE_OF(m))MapInitWithValueCompare((hash_fn), (compare_fn), (value_compare_fn)))
    #    define MapInitWithPolicyT(m, hash_fn, compare_fn, policy_value)                                                   \
Last updated on