Function 関数

NSMapMember(_:_:_:_:)

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

Declaration 宣言

func NSMapMember(_ table: NSMapTable<AnyObject, AnyObject>, 
               _ key: UnsafeRawPointer, 
               _ originalKey: UnsafeMutablePointer<UnsafeMutableRawPointer?>?, 
               _ value: UnsafeMutablePointer<UnsafeMutableRawPointer?>?) -> Bool

Return Value 戻り値

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

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 関連文書