HashMap.identity()

Creates an unordered identity-based map.

Effectively a shorthand for:

new HashMap<K, V>(equals: identical,
                  hashCode: identityHashCode)

Source

external factory HashMap.identity();