├── .gitignore ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources └── CollectionConcurrencyKit.swift └── Tests ├── CompactMapTests.swift ├── FlatMapTests.swift ├── ForEachTests.swift ├── MapTests.swift ├── TestCase.swift └── TimingTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CollectionConcurrencyKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Sources/CollectionConcurrencyKit.swift -------------------------------------------------------------------------------- /Tests/CompactMapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/CompactMapTests.swift -------------------------------------------------------------------------------- /Tests/FlatMapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/FlatMapTests.swift -------------------------------------------------------------------------------- /Tests/ForEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/ForEachTests.swift -------------------------------------------------------------------------------- /Tests/MapTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/MapTests.swift -------------------------------------------------------------------------------- /Tests/TestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/TestCase.swift -------------------------------------------------------------------------------- /Tests/TimingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/CollectionConcurrencyKit/HEAD/Tests/TimingTests.swift --------------------------------------------------------------------------------