HashMap<K, V>.identity constructor
Creates an unordered identity-based map.
Keys of this map are considered equal only to the same object, and do not use Object.== at all.
Effectively shorthand for:
HashMap<K, V>(equals: identical, hashCode: identityHashCode)
Implementation
external factory HashMap.identity();