jrtibbetts/Stylobate

View on GitHub
Source/Core Data/NSPredicate+Operators.swift

Summary

Maintainability
A
0 mins
Test Coverage
//  Copyright © 2019 Poikile Creations. All rights reserved.

import Foundation

public func + (predicateA: NSPredicate, predicateB: NSPredicate) -> NSCompoundPredicate {
    return NSCompoundPredicate(andPredicateWithSubpredicates: [predicateA, predicateB])
}