File tree 2 files changed +8
-8
lines changed
stdlib/public/Concurrency
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -475,17 +475,17 @@ extension AsyncStream: @unchecked Sendable where Element: Sendable { }
475
475
@available ( SwiftStdlib 5 . 1 , * )
476
476
extension AsyncStream . Continuation . YieldResult : Sendable where Element: Sendable { }
477
477
478
- @available ( SwiftStdlib 9999 , * )
478
+ @available ( SwiftStdlib 6 . 2 , * )
479
479
extension AsyncStream . Continuation : Hashable {
480
- @available ( SwiftStdlib 9999 , * )
480
+ @available ( SwiftStdlib 6 . 2 , * )
481
481
public func hash( into hasher: inout Hasher ) {
482
482
return hasher. combine ( ObjectIdentifier ( storage) )
483
483
}
484
- @available ( SwiftStdlib 9999 , * )
484
+ @available ( SwiftStdlib 6 . 2 , * )
485
485
public var hashValue : Int {
486
486
return _hashValue ( for: self )
487
487
}
488
- @available ( SwiftStdlib 9999 , * )
488
+ @available ( SwiftStdlib 6 . 2 , * )
489
489
public static func == ( lhs: Self , rhs: Self ) -> Bool {
490
490
return lhs. storage === rhs. storage
491
491
}
Original file line number Diff line number Diff line change @@ -521,17 +521,17 @@ extension AsyncThrowingStream: @unchecked Sendable where Element: Sendable { }
521
521
@available ( SwiftStdlib 5 . 1 , * )
522
522
extension AsyncThrowingStream . Continuation . YieldResult : Sendable where Element: Sendable { }
523
523
524
- @available ( SwiftStdlib 9999 , * )
524
+ @available ( SwiftStdlib 6 . 2 , * )
525
525
extension AsyncThrowingStream . Continuation : Hashable {
526
- @available ( SwiftStdlib 9999 , * )
526
+ @available ( SwiftStdlib 6 . 2 , * )
527
527
public func hash( into hasher: inout Hasher ) {
528
528
return hasher. combine ( ObjectIdentifier ( storage) )
529
529
}
530
- @available ( SwiftStdlib 9999 , * )
530
+ @available ( SwiftStdlib 6 . 2 , * )
531
531
public var hashValue : Int {
532
532
return _hashValue ( for: self )
533
533
}
534
- @available ( SwiftStdlib 9999 , * )
534
+ @available ( SwiftStdlib 6 . 2 , * )
535
535
public static func == ( lhs: Self , rhs: Self ) -> Bool {
536
536
return lhs. storage === rhs. storage
537
537
}
You can’t perform that action at this time.
0 commit comments