Merge pull request #2 from roanutil/update-workflow Update workflow
Merge pull request #2 from roanutil/update-workflow
Update workflow
Filter is a library that makes it easy to model filters in state and then create predicates from that state.
Core library that supports filter modeling and protocols for predicates.
FilterClosure and FilterNSPredicate provide good examples of implementing the predicate protocols.
let filter = ComparableFilter<Date>.andMulti([ .greaterThanOrEqualTo(Date.distantPast), .equatable(.not(.equalTo(Date.now))), .lessThanOrEqualTo(Date.distantFuture) ]) let nsPredicate = NSPredicate.build(from: filter) let closure = Closure.build(from: filter) let dates: [Date] = (Int.zero...Int.max).map { Date(timeIntervalSince1970: Double($0)) } let filteredByClosure = dates.filter(closure) let filteredByNSPredicate = dates.filter { nsPredicate.evaluate(with: $0) }
Implementations of strongly typed predicate protocols that produce closures for filtering
Implementation of type erased predicate protocols that produce NSPredicates.
NSPredicate
Add Filter to your Xcode project with Swift Package Manager.
Use the https URL from this repository in the Xcode Swift Packages dialogue or package manifest.
Filter
Filter is a library that makes it easy to model filters in state and then create predicates from that state.
Included Products
Filter
Core library that supports filter modeling and protocols for predicates.
FilterClosure and FilterNSPredicate provide good examples of implementing the predicate protocols.
Example
FilterClosure
Implementations of strongly typed predicate protocols that produce closures for filtering
FilterNSPredicate
Implementation of type erased predicate protocols that produce
NSPredicate
s.Installation
Add Filter to your Xcode project with Swift Package Manager.
Use the https URL from this repository in the Xcode Swift Packages dialogue or package manifest.