Function
関数
NSHashInsertKnownAbsent
Adds an element to the specified hash table.
ある要素を、指定されたハッシュテーブルに追加します。
Declaration
宣言
void NSHashInsertKnownAbsent(NSHashTable
*table, const void *pointer);
Discussion
議論
Inserts pointer
, which must not be NULL
, into table
. Unlike NSHashInsert
, this function raises NSInvalidArgumentException
if table
already includes an element that matches pointer
.
pointer
、それはNULL
であってはいけません、をtable
へ挿入します。NSHashInsert
とは違い、この関数はNSInvalidArgumentException
を引き起こします、もしtable
が既にpointer
に合致する要素を含むならば。
See Also
参照
Related Documentation
関連文書
NSHashRemove
Removes an element from the specified hash table.
指定されたハッシュテーブルから要素を除去します。
NSHashInsert
Adds an element to the specified hash table.
ある要素を、指定されたハッシュテーブルに追加します。
NSHashInsertIfAbsent
Adds an element to the specified hash table only if the table does not already contain the element.
指定されたハッシュテーブルに要素を、そのテーブルがまだその要素を含まない場合にのみ、追加します。