CanonicalizedMap<C, K, V> constructor

CanonicalizedMap<C, K, V>(C canonicalize(K key), { bool isValidKey(Object key) })

Creates an empty canonicalized map.

The canonicalize function should return the canonical value for the given key. Keys with the same canonical value are considered equivalent.

The isValidKey function is called before calling canonicalize for methods that take arbitrary objects. It can be used to filter out keys that can't be canonicalized.

Implementation

CanonicalizedMap(C canonicalize(K key), {bool isValidKey(Object key)})
    : _canonicalize = canonicalize,
      _isValidKeyFn = isValidKey;