Contents

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.

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.

See Also

Related Documentation

Functions