Function 関数

NSHashInsert(_:_:)

Adds an element to the specified hash table. ある要素を、指定されたハッシュテーブルに追加します。

Declaration 宣言

func NSHashInsert(_ table: NSHashTable<AnyObject>, 
                _ pointer: UnsafeRawPointer?)

Discussion 議論

Inserts pointer, which must not be NULL, into table. If pointer matches an item already in the table, the previous pointer is released using the release callback function that was specified when the table was created. pointer、それはNULLであってはいけません、をtableへ挿入します。pointerが既にテーブルの中の項目に合致するならば、テーブル作成時に指定されたreleaseコールバック関数を使って、前のポインタは解除されます。

See Also 参照

Related Documentation 関連文書