Function 関数

NSStringFromMapTable(_:)

Returns a string describing the map table’s contents. マップテーブルの内容を説明している文字列を返します。

Declaration 宣言

func NSStringFromMapTable(_ table: NSMapTable<AnyObject, AnyObject>) -> String

Parameters パラメータ

table

A reference to a map table structure. マップテーブル構造体への参照。

Return Value 戻り値

A string describing the map table’s contents. マップテーブルの内容を説明している文字列。

Discussion 議論

The function iterates over the key-value pairs of table and for each one appends the string “a = b;\n”, where a and b are the key and value strings returned by the corresponding describe callback functions. If NULL was specified for the callback function, a and b are the key and value pointers, expressed as hexadecimal numbers. 関数はtableのキー値ペアすべてにわたって反復します、そしてそれぞれのものに対して文字列 “a = b;\n” を付加します、そこで a と b は、対応するdescribeコールバック関数によって返されるキーと値文字列です。NULLがコールバック関数に対して指定されたならば、aとbはキーおよび値のポインターで、16進数として表されます。