CountingHashSet<E>.identity constructor

CountingHashSet<E>.identity()

Equivalent to HashSet.identity.

Implementation

CountingHashSet.identity()
    : _inner = HashSet.identity(),
      _counts = HashMap.identity();