MappingOrderedSet<K extends Comparable<K> , E> constructor
MappingOrderedSet<K extends Comparable<K> , E> (
- K _mappingFunction(
- E a
- bool strictMode = true,
Implementation
MappingOrderedSet(
this._mappingFunction, {
this.strictMode = true,
}) : _backingSet = SplayTreeMap((K k1, K k2) => k1.compareTo(k2));