Function 関数

NSStringFromHashTable(_:)

Returns a string describing the hash table’s contents. ハッシュテーブルの内容を記述している文字列を返します。

Declaration 宣言

func NSStringFromHashTable(_ table: NSHashTable<AnyObject>) -> String

Return Value 戻り値

A string describing table’s contents. tableの内容を記述している文字列。

Discussion 議論

The function iterates over the elements of table, and for each one appends the string returned by the describe callback function. If NULL was specified for the callback function, the hexadecimal value of each pointer is added to the string. 関数はtableの要素すべてにわたって反復します、そしてそれぞれのものに対してdescribeコールバック関数によって返される文字列を付加します。NULLがコールバック関数に対して指定されたならば、各ポインタの16進数値が文字列へ加えられます。