NSPredicate

Undocumented

  • Mechanica

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

    Declaration

    Swift

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

    Parameters

    lhs

    The left-hand side of the operation.

    rhs

    The right-hand side of the operation.

  • Mechanica

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

    Declaration

    Swift

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

    Parameters

    lhs

    The left-hand side of the operation.

    rhs

    The right-hand side of the operation.

  • Mechanica

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

    Declaration

    Swift

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

    Parameters

    p

    The NSPredicate to negate.