File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ orderingExplanation = """\
144
144
145
145
extension MutableCollection {
146
146
public mutating func partition(
147
- by belongsInSecondPartition: @noescape ( ${ IElement} ) throws -> Bool
147
+ by belongsInSecondPartition: @noescape ( ${ IElement} ) throws -> Bool
148
148
) rethrows -> Index {
149
149
150
150
var pivot = startIndex
@@ -170,9 +170,9 @@ extension MutableCollection {
170
170
}
171
171
}
172
172
173
- extension MutableCollection where Self: BidirectionalCollection {
173
+ extension MutableCollection where Self : BidirectionalCollection {
174
174
public mutating func partition(
175
- by belongsInSecondPartition: @noescape ( ${ IElement} ) throws -> Bool
175
+ by belongsInSecondPartition: @noescape ( ${ IElement} ) throws -> Bool
176
176
) rethrows -> Index {
177
177
let maybeOffset = try _withUnsafeMutableBufferPointerIfSupported {
178
178
( baseAddress, count) -> Int in
You can’t perform that action at this time.
0 commit comments