HashMap<K, V>.identity 构造函数

HashMap<K, V>.identity()

创建一个基于身份的无序映射。

此映射的键仅认为与相同对象相等,根本不使用 Object.==

实际上是以下内容的简写:

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

实现

external factory HashMap.identity();