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

enumerateKeysAndObjects(options:using:)

Applies a given block object to the entries of the dictionary, with options specifying how the enumeration is performed. 与えられたブロックオブジェクトを、その辞書の登録項目に適用します、どのように列挙が実行されるか指定しているオプションとともに。

Declaration 宣言

func enumerateKeysAndObjects(options opts: NSEnumerationOptions = [], 
                       using block: (Any, Any, UnsafeMutablePointer<ObjCBool>) -> Void)

Parameters パラメータ

opts

Enumeration options. 列挙オプション。

block

A block object to operate on entries in the dictionary. 辞書の中の登録項目上で演算を行うことになるブロックオブジェクト。

Discussion 議論

If the block sets *stop to true, the enumeration stops. ブロックが*stoptrueに設定するならば、列挙は停止します。

See Also 参照

Enumerating Dictionaries 辞書を列挙する