NSCopyHashTableWithZone(_:_:)
Performs a shallow copy of the specified hash table.
Declaration
func NSCopyHashTableWithZone(_ table: NSHashTable<AnyObject>, _ zone: NSZone?) -> NSHashTable<AnyObject>Return Value
A pointer to a new copy of table, created in zone and containing pointers to the data elements of table.
Discussion
If zone is NULL, the new table is created in the default zone.
The new table adopts the callback functions of table and calls the hash and retain callback functions as appropriate when inserting elements into the new table.
See Also
Related Documentation
Functions
NSAllHashTableObjects(_:)NSCompareHashTables(_:_:)NSCountHashTable(_:)NSCreateHashTable(_:_:)NSCreateHashTableWithZone(_:_:_:)NSEndHashTableEnumeration(_:)NSEnumerateHashTable(_:)NSFreeHashTable(_:)NSHashGet(_:_:)NSHashInsert(_:_:)NSHashInsertIfAbsent(_:_:)NSHashInsertKnownAbsent(_:_:)NSHashRemove(_:_:)NSNextHashEnumeratorItem(_:)NSResetHashTable(_:)