File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 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 { }
475475@available ( SwiftStdlib 5 . 1 , * )
476476extension AsyncStream . Continuation . YieldResult : Sendable where Element: Sendable { }
477477
478- @available ( SwiftStdlib 9999 , * )
478+ @available ( SwiftStdlib 6 . 2 , * )
479479extension AsyncStream . Continuation : Hashable {
480- @available ( SwiftStdlib 9999 , * )
480+ @available ( SwiftStdlib 6 . 2 , * )
481481 public func hash( into hasher: inout Hasher ) {
482482 return hasher. combine ( ObjectIdentifier ( storage) )
483483 }
484- @available ( SwiftStdlib 9999 , * )
484+ @available ( SwiftStdlib 6 . 2 , * )
485485 public var hashValue : Int {
486486 return _hashValue ( for: self )
487487 }
488- @available ( SwiftStdlib 9999 , * )
488+ @available ( SwiftStdlib 6 . 2 , * )
489489 public static func == ( lhs: Self , rhs: Self ) -> Bool {
490490 return lhs. storage === rhs. storage
491491 }
Original file line number Diff line number Diff line change @@ -521,17 +521,17 @@ extension AsyncThrowingStream: @unchecked Sendable where Element: Sendable { }
521521@available ( SwiftStdlib 5 . 1 , * )
522522extension AsyncThrowingStream . Continuation . YieldResult : Sendable where Element: Sendable { }
523523
524- @available ( SwiftStdlib 9999 , * )
524+ @available ( SwiftStdlib 6 . 2 , * )
525525extension AsyncThrowingStream . Continuation : Hashable {
526- @available ( SwiftStdlib 9999 , * )
526+ @available ( SwiftStdlib 6 . 2 , * )
527527 public func hash( into hasher: inout Hasher ) {
528528 return hasher. combine ( ObjectIdentifier ( storage) )
529529 }
530- @available ( SwiftStdlib 9999 , * )
530+ @available ( SwiftStdlib 6 . 2 , * )
531531 public var hashValue : Int {
532532 return _hashValue ( for: self )
533533 }
534- @available ( SwiftStdlib 9999 , * )
534+ @available ( SwiftStdlib 6 . 2 , * )
535535 public static func == ( lhs: Self , rhs: Self ) -> Bool {
536536 return lhs. storage === rhs. storage
537537 }
You can’t perform that action at this time.
0 commit comments