func NSAllHashTableObjects (NSHashTable<AnyObject>) -> [Any]
Returns all of the elements in the specified hash table.
指定されたハッシュテーブルの中の要素のすべてを返します。
func NSCompareHashTables (NSHashTable<AnyObject>, NSHashTable<AnyObject>) -> Bool
Returns a Boolean value that indicates whether the elements of two hash tables are equal.
2つのハッシュテーブルのそれら要素が等しいかどうかを指し示すブール値を返します。
func NSCopyHashTableWithZone (NSHashTable<AnyObject>, NSZone?) -> NSHashTable<AnyObject>
Performs a shallow copy of the specified hash table.
指定されたハッシュテーブルの浅いコピーを実行します。
func NSCountHashTable (NSHashTable<AnyObject>) -> Int
Returns the number of elements in a hash table.
あるハッシュテーブルの中の要素数を返します。
func NSCreateHashTable (NSHashTableCallBacks, Int) -> NSHashTable<AnyObject>
Creates and returns a new hash table.
新しいハッシュテーブルを作成して返します。
func NSCreateHashTableWithZone (NSHashTableCallBacks, Int, NSZone?) -> NSHashTable<AnyObject>
Creates a new hash table in a given zone.
新しいハッシュテーブルを、与えられたゾーンに作成します。
func NSEndHashTableEnumeration (UnsafeMutablePointer<NSHashEnumerator>)
Used when finished with an enumerator.
ある列挙子で終了した時に使われます。
func NSEnumerateHashTable (NSHashTable<AnyObject>) -> NSHashEnumerator
Creates an enumerator for the specified hash table.
指定されたハッシュテーブルのための列挙子を作成します。
func NSFreeHashTable (NSHashTable<AnyObject>)
Deletes the specified hash table.
指定されたハッシュテーブルを削除します。
func NSHashGet (NSHashTable<AnyObject>, UnsafeRawPointer?) -> UnsafeMutableRawPointer
Returns an element of the hash table.
ハッシュテーブルのある要素を返します。
func NSHashInsert (NSHashTable<AnyObject>, UnsafeRawPointer?)
Adds an element to the specified hash table.
ある要素を、指定されたハッシュテーブルに追加します。
func NSHashInsertIfAbsent (NSHashTable<AnyObject>, UnsafeRawPointer?) -> UnsafeMutableRawPointer?
Adds an element to the specified hash table only if the table does not already contain the element.
指定されたハッシュテーブルに要素を、そのテーブルがまだその要素を含まない場合にのみ、追加します。
func NSHashInsertKnownAbsent (NSHashTable<AnyObject>, UnsafeRawPointer?)
Adds an element to the specified hash table.
ある要素を、指定されたハッシュテーブルに追加します。
func NSHashRemove (NSHashTable<AnyObject>, UnsafeRawPointer?)
Removes an element from the specified hash table.
指定されたハッシュテーブルから要素を除去します。
func NSNextHashEnumeratorItem (UnsafeMutablePointer<NSHashEnumerator>) -> UnsafeMutableRawPointer?
Returns the next hash-table element in the enumeration.
列挙の中の次のハッシュテーブル要素を返します。
func NSResetHashTable (NSHashTable<AnyObject>)
Deletes the elements of the specified hash table.
指定されたハッシュテーブルの要素を削除します。
func NSStringFromHashTable (NSHashTable<AnyObject>) -> String
Returns a string describing the hash table’s contents.
ハッシュテーブルの内容を記述している文字列を返します。