mirror of
https://github.com/github/semantic.git
synced 2024-11-29 21:52:59 +03:00
93fd2acc81
git-subtree-dir: prototype
git-subtree-mainline: 0244ce39f68a04b515f32b2b8ea9a3e0228923c7
git-subtree-split: a7fef6ced9
10 lines
310 B
Swift
10 lines
310 B
Swift
extension String {
|
|
func from(offset: String.Index.Distance) -> String {
|
|
return String(characters[startIndex.advancedBy(offset, limit: endIndex)..<endIndex])
|
|
}
|
|
|
|
func to(offset: String.Index.Distance) -> String {
|
|
return String(characters[startIndex..<startIndex.advancedBy(offset, limit: endIndex)])
|
|
}
|
|
}
|