MonobjcMonobjc Documented Class Library
NSComparisonPredicateModifier Enumeration
NamespacesMonobjc.FoundationNSComparisonPredicateModifier

These constants describe the possible types of modifier for NSComparisonPredicate.

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public enum NSComparisonPredicateModifier
Public Enumeration NSComparisonPredicateModifier
public enum class NSComparisonPredicateModifier
Members
MemberDescription
NSDirectPredicateModifier

A predicate to compare directly the left and right hand sides.

Available in Mac OS X v10.4 and later.


NSAllPredicateModifier

A predicate to compare all entries in the destination of a to-many relationship.

The left hand side must be a collection. The corresponding predicate compares each value in the left hand side with the right hand side, and returns NO when it finds the first mismatch—€”or YES if all match.

Available in Mac OS X v10.4 and later.


NSAnyPredicateModifier

A predicate to match with any entry in the destination of a to-many relationship.

The left hand side must be a collection. The corresponding predicate compares each value in the left hand side against the right hand side and returns YES when it finds the first match—or NO if no match is found

Available in Mac OS X v10.4 and later.


Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)