├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── SwiftSortUtils.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftSortUtils-Example.xcscheme ├── SwiftSortUtils.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SwiftSortUtilsTests │ ├── Info.plist │ └── SwiftSortUtilsTests.swift └── Tests │ └── Info.plist ├── LICENSE ├── Package.swift ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── CompareFunctions.swift │ ├── NSSortDescriptor+CompareFunction.swift │ └── Sequence+SortedByComparing.swift ├── README.md ├── SwiftSortUtils.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/SwiftSortUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SwiftSortUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftSortUtils.xcodeproj/xcshareddata/xcschemes/SwiftSortUtils-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtils.xcodeproj/xcshareddata/xcschemes/SwiftSortUtils-Example.xcscheme -------------------------------------------------------------------------------- /Example/SwiftSortUtils.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtils.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftSortUtils.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtils.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SwiftSortUtilsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtilsTests/Info.plist -------------------------------------------------------------------------------- /Example/SwiftSortUtilsTests/SwiftSortUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/SwiftSortUtilsTests/SwiftSortUtilsTests.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Package.swift -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/CompareFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Pod/Classes/CompareFunctions.swift -------------------------------------------------------------------------------- /Pod/Classes/NSSortDescriptor+CompareFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Pod/Classes/NSSortDescriptor+CompareFunction.swift -------------------------------------------------------------------------------- /Pod/Classes/Sequence+SortedByComparing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/Pod/Classes/Sequence+SortedByComparing.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/README.md -------------------------------------------------------------------------------- /SwiftSortUtils.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmatter/SwiftSortUtils/HEAD/SwiftSortUtils.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------