├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── StringIndex │ ├── OffsetIndex.swift │ ├── StringIndex.swift │ └── Subscripts.swift ├── StringIndex.podspec └── Tests ├── LinuxMain.swift └── StringIndexTests ├── StringIndexTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/README.md -------------------------------------------------------------------------------- /Sources/StringIndex/OffsetIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Sources/StringIndex/OffsetIndex.swift -------------------------------------------------------------------------------- /Sources/StringIndex/StringIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Sources/StringIndex/StringIndex.swift -------------------------------------------------------------------------------- /Sources/StringIndex/Subscripts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Sources/StringIndex/Subscripts.swift -------------------------------------------------------------------------------- /StringIndex.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/StringIndex.podspec -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/StringIndexTests/StringIndexTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Tests/StringIndexTests/StringIndexTests.swift -------------------------------------------------------------------------------- /Tests/StringIndexTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnno1962/StringIndex/HEAD/Tests/StringIndexTests/XCTestManifests.swift --------------------------------------------------------------------------------