Instance Method インスタンスメソッド

enumerate(_:)

Executes a given Block using each object in the index set. 与えられたBlockをインデックス集合の中の各オブジェクトを使って実行します。

Declaration 宣言

func enumerate(_ block: (Int, UnsafeMutablePointer<ObjCBool>) -> Void)

Parameters パラメータ

block

The Block to apply to elements in the set. 集合の中の要素に適用するブロック。

The Block takes two arguments: ブロックは2つの引数をとります。

idx

The index of the object. オブジェクトのインデックス。

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 Boolean to YES within the Block. あるブール値への参照。ブロックは、値をtrueに設定することで、それ以上の集合の処理を止めることができます。stop引数は、ひとつの退出専用引数です。あなたは、常にこのブールをBlock内でYESに設定するだけであるべきです。

Discussion 議論

This method executes synchronously. このメソッドは同期的に実行されます。

See Also 参照

Enumerating Indexes インデックスを列挙する