Function 関数

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. tableの新しいコピーへのポインタ、zoneの中に作成されて、tableのデータ要素へのポインタを含んでいます。

Discussion 議論

If zone is NULL, the new table is created in the default zone. zoneNULLならば、新しいテーブルは省略時のゾーンの中に作成されます。

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. 新しいテーブルは、tableのコールバック関数を採用し、要素を新しいテーブルに挿入する時に、hashretainコールバック関数を適切に呼び出します。

See Also 参照

Related Documentation 関連文書