We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6a1e23 + a72544f commit 823e5d4Copy full SHA for 823e5d4
stdlib/public/core/ObjectIdentifier.swift
@@ -95,6 +95,11 @@ extension ObjectIdentifier: Hashable {
95
public func hash(into hasher: inout Hasher) {
96
hasher.combine(Int(Builtin.ptrtoint_Word(_value)))
97
}
98
+
99
+ @_alwaysEmitIntoClient // For back deployment
100
+ public func _rawHashValue(seed: Int) -> Int {
101
+ Int(Builtin.ptrtoint_Word(_value))._rawHashValue(seed: seed)
102
+ }
103
104
105
extension UInt {
0 commit comments