NSPredicate

Undocumented

  • Mechanica

    Declaration

    Swift

    public func and(_ predicate: NSPredicate) -> NSPredicate

    Return Value

    a new compound NSPredicate formed by AND-ing self with predicate.

  • Mechanica

    Declaration

    Swift

    public func or(_ predicate: NSPredicate) -> NSPredicate

    Return Value

    a new compound NSPredicate formed by OR-ing self with predicate.

  • Mechanica

    Returns a new predicate formed by AND-ing the two predicates.

    Declaration

    Swift

    public static func && (lhs: NSPredicate, rhs: NSPredicate) -> NSPredicate
  • Mechanica

    Returns a new predicate formed by OR-ing the two predicates.

    Declaration

    Swift

    public static func || (lhs: NSPredicate, rhs: NSPredicate) -> NSPredicate
  • Mechanica

    Returns a new predicate forme d by NOT-ing a given predicate.

    Declaration

    Swift

    public static prefix func ! (predicate: NSPredicate) -> NSPredicate