-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f5f8da
commit 89b4b84
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Foundation | ||
|
||
extension IndexSet { | ||
public func apply(mutation: RangeMutation) -> IndexSet { | ||
let ranges = nsRangeView.compactMap { $0.apply(mutation) } | ||
|
||
return IndexSet(ranges: ranges) | ||
} | ||
|
||
public mutating func applying(mutation: RangeMutation) { | ||
self = self.apply(mutation: mutation) | ||
} | ||
|
||
public func apply(mutations: [RangeMutation]) -> IndexSet { | ||
var ranges = nsRangeView | ||
|
||
for mutation in mutations { | ||
ranges = ranges.compactMap { $0.apply(mutation) } | ||
} | ||
|
||
return IndexSet(ranges: ranges) | ||
} | ||
|
||
public mutating func applying(mutations: [RangeMutation]) { | ||
self = self.apply(mutations: mutations) | ||
} | ||
} |