Type Method 型メソッド

predicateWithLeftExpression:rightExpression:modifier:type:options:

Creates and returns a predicate of a given type formed by combining given left and right expressions using a given modifier and options. 与えられた左および右式をある与えられた修飾子と幾つかのオプションを使って結合することによって形成されるある与えられた型のある述部を作成して返します。

Declaration 宣言

+ (NSComparisonPredicate *)predicateWithLeftExpression:(NSExpression *)lhs 
                                       rightExpression:(NSExpression *)rhs 
                                              modifier:(NSComparisonPredicateModifier)modifier 
                                                  type:(NSPredicateOperatorType)type 
                                               options:(NSComparisonPredicateOptions)options;

Parameters パラメータ

lhs

The left hand expression. 左手の式。

rhs

The right hand expression. 右手の式。

modifier

The modifier to apply. 適用する修正子。

type

The predicate operator type. 述部演算子型。

options オプション

The options to apply (see NSComparisonPredicateOptions). For no options, pass 0. 適用するオプション(NSComparisonPredicateOptionsを見てください)。オプション無しに対しては、0を渡してください。

Return Value 戻り値

A new predicate of type type formed by combining the given left and right expressions using the modifier and options. 与えられた左と右の式をmodifieroptionsを使って結合することによって形成された型typeの新しい述部。

See Also 参照

Creating Comparison Predicates 比較述部を作成する