init(options: NSPointerFunctions.Options, capacity: Int)
Returns a hash table initialized with the given attributes.
与えられた属性で初期化されたハッシュテーブルを返します。
Availability 有効性
Technology
init(pointerFunctions functions: NSPointerFunctions
,
capacity initialCapacity: Int
)
functions
The pointer functions for the new hash table. 新しいハッシュテーブルに対するポインタ関数。
initialCapacity
The initial capacity of the hash table. ハッシュテーブルの初期容量。
A hash table initialized with the given functions and capacity. 与えられた関数と容量で初期化されたハッシュテーブル。
Hash tables allocate additional memory as needed, so initial
simply establishes the object’s initial capacity.
ハッシュテーブルは、追加のメモリを必要に応じてアロケートします、それでinitial
は単にオブジェクトのもつ初期容量を確立します。
init(options: NSPointerFunctions.Options, capacity: Int)