Skip to content

Commit 82d40b3

Browse files
committed
Ignore iterable protocol for now
1 parent ff56888 commit 82d40b3

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

stdlib/public/core/InlineArray.swift

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -615,20 +615,20 @@ extension InlineArray where Element: ~Copyable {
615615
}
616616
}
617617

618-
@available(SwiftStdlib 6.3, *)
619-
extension InlineArray: Iterable where Element: ~Copyable {
620-
public typealias BorrowIterator = Span<Element>.BorrowIterator
621-
622-
@_alwaysEmitIntoClient
623-
@_transparent
624-
public var estimatedCount: EstimatedCount {
625-
.exactly(count)
626-
}
627-
628-
@_alwaysEmitIntoClient
629-
@_lifetime(borrow self)
630-
@_transparent
631-
public func startBorrowIteration() -> Span<Element> {
632-
span
633-
}
634-
}
618+
//@available(SwiftStdlib 6.3, *)
619+
//extension InlineArray: Iterable where Element: ~Copyable {
620+
// public typealias BorrowIterator = Span<Element>.BorrowIterator
621+
//
622+
// @_alwaysEmitIntoClient
623+
// @_transparent
624+
// public var estimatedCount: EstimatedCount {
625+
// .exactly(count)
626+
// }
627+
//
628+
// @_alwaysEmitIntoClient
629+
// @_lifetime(borrow self)
630+
// @_transparent
631+
// public func startBorrowIteration() -> Span<Element> {
632+
// span
633+
// }
634+
//}

0 commit comments

Comments
 (0)