File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 10
10
//
11
11
//===----------------------------------------------------------------------===//
12
12
13
- public protocol LazyCollectionProtocol < Elements>
14
- : Collection , LazySequenceProtocol
13
+ public protocol LazyCollectionProtocol : Collection , LazySequenceProtocol
15
14
where Elements: Collection { }
16
15
17
16
extension LazyCollectionProtocol {
Original file line number Diff line number Diff line change 128
128
/// and discards the resulting array. Instead, use `reduce` for summing
129
129
/// operations, or `forEach` or a `for`-`in` loop for operations with side
130
130
/// effects.
131
- public protocol LazySequenceProtocol < Elements > : Sequence {
131
+ public protocol LazySequenceProtocol : Sequence {
132
132
/// A `Sequence` that can contain the same elements as this one,
133
133
/// possibly with a simpler type.
134
134
///
You can’t perform that action at this time.
0 commit comments