Instance Method
インスタンスメソッド
enumerateObjects(options:using:)
Executes a given block using each object in the set, using the specified enumeration options.
与えられたブロックを集合の中の各オブジェクトを使って実行します、指定された列挙オプションを使います。
Parameters
パラメータ
opts
A bitmask that specifies the options for the enumeration (whether it should be performed concurrently and whether it should be performed in reverse order).
列挙に対するオプションを指定するビットマスク(それが並行して実行されるべきかどうかそしてそれが逆順で実行されるべきかどうか)。
block
The block to apply to elements in the ordered set.
順序集合の中の要素に適用することになるブロック。
The block takes three arguments:
ブロックは、次の3つの引数をとります:
- obj
The element in the set.
集合の中の要素。
- idx
The index of the item in the set.
集合の中の項目のインデックス。
- stop
中止
A reference to a Boolean value. The block can set the value to true
to stop further processing of the set. The stop
argument is an out-only argument. You should only ever set this value to true
within the block.
あるブール値への参照。ブロックは、値をtrue
に設定することで、それ以上の集合の処理を止めることができます。stop
引数は、ひとつの退出専用引数です。あなたは、この値をブロック内部でtrue
に設定するだけであるべきです。
The block returns a Boolean value that indicates whether obj
passed the test.
この「ブロック」はobj
がテストを合格したかどうかを示すブール値を返します。
See Also
参照
Accessing Set Members
集合メンバにアクセスする
func contains(Any) -> Bool
Returns a Boolean value that indicates whether a given object is present in the ordered set.
あるブール値を返します、与えられたオブジェクトが順序集合の中に存在するかどうかを指し示します。