Type Method 型メソッド

expressionForMinusSet:with:

Creates an expression object that represents the subtraction of a specified collection from a specified set. ある式オブジェクトを作成します、それは指定されたコレクションをある指定された集合から引いたものを表します。

Declaration 宣言

+ (NSExpression *)expressionForMinusSet:(NSExpression *)left 
                                   with:(NSExpression *)right;

Parameters パラメータ

left

An expression that evaluates to an NSSet object. ある式、それはひとつのNSSetオブジェクトに評価されるものです。

right

An expression that evaluates to a collection object (an instance of NSArray, NSSet, or NSDictionary). ある式、それはひとつのコレクションオブジェクトに評価されるものです(NSArrayNSSet、またはNSDictionaryのインスタンス)。

Return Value 戻り値

A new NSExpression object that represents the subtraction of right from left. ある新しいNSExpressionオブジェクト、それはrightleftから引いたものを表します。

See Also 参照

Creating a Collection Expression コレクション式を作成する