Function 関数

NSCopyMapTableWithZone(_:_:)

Performs a shallow copy of the specified map table. 指定されたマップテーブルの浅いコピーを実行します。

Declaration 宣言

func NSCopyMapTableWithZone(_ table: NSMapTable<AnyObject, AnyObject>, 
                          _ zone: NSZone?) -> NSMapTable<AnyObject, AnyObject>

Return Value 戻り値

A pointer to a new copy of table, created in zone and containing pointers to the keys and values 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 関連文書