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.
1 parent 9c617ab commit 297c82dCopy full SHA for 297c82d
stdlib/public/core/Hasher.swift
@@ -235,8 +235,7 @@ extension Hasher { // Combining integers
235
self._combine(bytes: UInt64(truncatingIfNeeded: value), count: 1)
236
}
237
238
- @usableFromInline
239
- @_effects(releasenone)
+ @inline(__always)
240
internal mutating func _combine(bytes: UInt64, count: Int) {
241
_sanityCheck(count >= 0 && count < 8)
242
let count = UInt64(truncatingIfNeeded: count)
0 commit comments