Function
関数
NSNextMapEnumeratorPair
Returns a Boolean value that indicates whether the next map-table pair in the enumeration are set.
列挙の中の次のマップ-テーブルのペアが設定されるかどうかを指し示すブール値を返します。
Declaration
宣言
BOOL NSNextMapEnumeratorPair(NSMapEnumerator
*enumerator, void * _Nullable *key, void * _Nullable *value);
Return Value
戻り値
NO
if enumerator
has already iterated over all the elements in the table that enumerator
is associated with; otherwise, sets key
and value
to match the next key-value pair in the table and returns YES
.
NO
、もしenumerator
がenumerator
が関連付けられるテーブルの中の全ての要素に既に反復処理したならば;そうでなければkey
とvalue
をテーブルの中の次のキー値ペアに合致するよう設定します、そしてYES
を返します。
See Also
参照
Related Documentation
関連文書
NSMapMember
Indicates whether a given table contains a given key.
与えられたテーブルが、与えられたキーを含むかどうかを指し示します。
NSMapGet
Returns a map table value for the specified key.
指定されたキーに対するマップテーブル値を返します。
NSEnumerateMapTable
Creates an enumerator for the specified map table.
指定されたマップテーブルのための列挙子を作成します。
NSAllMapTableKeys
Returns all of the keys in the specified map table.
指定されたマップテーブルの中の全てのキーを返します。