SwiftString is a lightweight String extension for Swift. This library was launched under the inspiration of many SwiftString repositories on GitHub.
This library implement only two extensions of signature of subscript, those are thought as need for, by Author.
let str = "abcdefg"
str[3..<6] // "def"
str[3...5] // "def"
For now, that's everything.
Intended to import over XCode built-in package dependency management.
kendimaru (長尾賢志), kendimaru2@gmail.com
SwiftString is available under the MIT license.