├── .gitignore ├── .swift-version ├── LICENSE ├── Other └── logo.jpeg ├── Package.swift ├── README.md ├── Sources └── Reloaded │ ├── CoreData.swift │ ├── Exports.swift │ ├── Extensions │ └── Array+NSPredicate.swift │ ├── Libs │ ├── Filter │ │ ├── Filters.swift │ │ ├── QueryFilter.swift │ │ ├── QueryFilterGroup.swift │ │ ├── QueryFilterType.swift │ │ └── QueryFilterValue.swift │ ├── Query.swift │ ├── QueryField.swift │ └── Sorting │ │ ├── QuerySort.swift │ │ └── Sorting.swift │ └── Protocols │ ├── Entity.swift │ ├── QueryDataRepresentable.swift │ └── QueryExecutable.swift └── Tests └── ReloadedTests ├── ReloadedTests.swift └── Setup.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Other/logo.jpeg -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Reloaded/CoreData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/CoreData.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Exports.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Extensions/Array+NSPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Extensions/Array+NSPredicate.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Filter/Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Filter/Filters.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Filter/QueryFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Filter/QueryFilter.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Filter/QueryFilterGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Filter/QueryFilterGroup.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Filter/QueryFilterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Filter/QueryFilterType.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Filter/QueryFilterValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Filter/QueryFilterValue.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Query.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/QueryField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/QueryField.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Sorting/QuerySort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Sorting/QuerySort.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Libs/Sorting/Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Libs/Sorting/Sorting.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Protocols/Entity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Protocols/Entity.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Protocols/QueryDataRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Protocols/QueryDataRepresentable.swift -------------------------------------------------------------------------------- /Sources/Reloaded/Protocols/QueryExecutable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Sources/Reloaded/Protocols/QueryExecutable.swift -------------------------------------------------------------------------------- /Tests/ReloadedTests/ReloadedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Tests/ReloadedTests/ReloadedTests.swift -------------------------------------------------------------------------------- /Tests/ReloadedTests/Setup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiveUI/Reloaded/HEAD/Tests/ReloadedTests/Setup.swift --------------------------------------------------------------------------------