├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .spi.yml ├── .swiftformat ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── FindFaster │ └── BidirectionalCollection+fastSearch.swift └── Tests └── FindFasterTests └── FindFasterTests.swift /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FindFaster/BidirectionalCollection+fastSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/Sources/FindFaster/BidirectionalCollection+fastSearch.swift -------------------------------------------------------------------------------- /Tests/FindFasterTests/FindFasterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnvoor/FindFaster/HEAD/Tests/FindFasterTests/FindFasterTests.swift --------------------------------------------------------------------------------