Instance Method インスタンスメソッド

initWithKeyPointerFunctions:valuePointerFunctions:capacity:

Returns a map table, initialized with the given functions. あるマップテーブルを返します、与えられた関数で初期化されます。

Declaration 宣言

- (instancetype)initWithKeyPointerFunctions:(NSPointerFunctions *)keyFunctions 
                      valuePointerFunctions:(NSPointerFunctions *)valueFunctions 
                                   capacity:(NSUInteger)initialCapacity;

Parameters パラメータ

keyFunctions

The functions the map table uses to manage keys. マップテーブルがキーを管理するために使う関数。

valueFunctions

The functions the map table uses to manage values. マップテーブルが値を管理するために使う関数。

initialCapacity

The initial capacity of the map table. This is just a hint; the map table may subsequently grow and shrink as required. マップテーブルの初期容量。これは単なるヒントです;マップテーブルは後で必要に応じて成長したり縮んだりするかもしれません。

Return Value 戻り値

A map table, initialized with the given functions. あるマップテーブル、与えられた関数で初期化されます。

See Also 参照

Creating and Initializing a Map Table マップテーブルの作成と初期化