Function 関数

NSMapMember

Indicates whether a given table contains a given key. 与えられたテーブルが、与えられたキーを含むかどうかを指し示します。

Declaration 宣言

BOOL NSMapMember(NSMapTable *table, const void *key, void * _Nullable *originalKey, void * _Nullable *value);

Return Value 戻り値

YES if table contains a key equal to key, otherwise NO. YES、もしtablekeyと等しいキーを含むならば、そうでなければNO

Discussion 議論

If table contains a key equal to key, originalKey is set to key, and value is set to the value that table maps to key. tablekeyと等しいキーを含むならば、originalKeykeyに設定されます、そしてvalueはその値に設定されます、それはtablekeyにマップするものです。

See Also 参照

Related Documentation 関連文書