Initializer

init(leftExpression:rightExpression:modifier:type:options:)

Creates a predicate to a specified type that you form by combining specified left and right expressions using a specified modifier and options. ある述部をある指定された型に向けて作成します、それはあなたが指定された左および右式をある指定された修飾子とオプションいくつかを使って結合することによって形成するものです。

Declaration 宣言

init(leftExpression lhs: NSExpression, 
rightExpression rhs: NSExpression, 
modifier: NSComparisonPredicate.Modifier, 
type: NSComparisonPredicate.Operator, 
options: NSComparisonPredicate.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 NSComparisonPredicate.Options). For no options, pass 0. 適用するオプション(NSComparisonPredicate.Optionsを見てください)。オプション無しに対しては、0を渡してください。

Return Value 戻り値

The receiver, initialized to a predicate of type type formed by combining the left and right expressions using the modifier and options. 左および右式をmodifieroptionsを使って結合することによって形成される型typeの述部に初期化される、レシーバ。

See Also 参照

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