TreeMap
Description:
public TreeMap (owned CompareDataFunc<K>? key_compare_func = null, owned EqualDataFunc<V>? value_equal_func = null)
Constructs a new, empty tree map sorted according to the specified comparator function.
If not provided, the functions parameters are requested to the Functions function factory methods.
Parameters:
key_compare_func |
an optional key comparator function |
value_equal_func |
an optional values equality testing function |