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

Map<K, V>.identity()

使用默认实现 LinkedHashMap 创建一个身份映射。

身份映射使用 identical 进行相等性比较,以及使用 identityHashCode 为键生成哈希码,而不是使用键内在的 Object.==Object.hashCode

映射按照键的插入顺序迭代。

实现

factory Map.identity() = LinkedHashMap<K, V>.identity;