File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -1616,7 +1616,12 @@ extension Array: Hashable where Element: Hashable {
1616
1616
public var hashValue : Int {
1617
1617
return _hashValue ( for: self )
1618
1618
}
1619
-
1619
+
1620
+ /// Hashes the essential components of this value by feeding them into the
1621
+ /// given hasher.
1622
+ ///
1623
+ /// - Parameter hasher: The hasher to use when combining the components
1624
+ /// of this instance.
1620
1625
@inlinable // FIXME(sil-serialize-all)
1621
1626
public func hash( into hasher: inout Hasher ) {
1622
1627
hasher. combine ( count) // discriminator
Original file line number Diff line number Diff line change @@ -1410,7 +1410,13 @@ extension ArraySlice: Hashable where Element: Hashable {
1410
1410
public var hashValue : Int {
1411
1411
return _hashValue ( for: self )
1412
1412
}
1413
-
1413
+
1414
+ /// Hashes the essential components of this value by feeding them into the
1415
+ /// given hasher.
1416
+ ///
1417
+ /// - Parameter hasher: The hasher to use when combining the components
1418
+ /// of this instance.
1419
+ @inlinable // FIXME(sil-ser
1414
1420
@inlinable // FIXME(sil-serialize-all)
1415
1421
public func hash( into hasher: inout Hasher ) {
1416
1422
hasher. combine ( count) // discriminator
Original file line number Diff line number Diff line change @@ -1317,7 +1317,13 @@ extension ContiguousArray: Hashable where Element: Hashable {
1317
1317
public var hashValue : Int {
1318
1318
return _hashValue ( for: self )
1319
1319
}
1320
-
1320
+
1321
+ /// Hashes the essential components of this value by feeding them into the
1322
+ /// given hasher.
1323
+ ///
1324
+ /// - Parameter hasher: The hasher to use when combining the components
1325
+ /// of this instance.
1326
+ @inlinable // FIXME(sil-ser
1321
1327
@inlinable // FIXME(sil-serialize-all)
1322
1328
public func hash( into hasher: inout Hasher ) {
1323
1329
hasher. combine ( count) // discriminator
You can’t perform that action at this time.
0 commit comments