func print(Any, separator: String, terminator: String)
Writes the textual representations of the given items into the standard output.
与えられた項目のテキスト表現を標準出力に書き出します。
func print<Target>(Any, separator: String, terminator: String, to: inout Target)
Writes the textual representations of the given items into the given output stream.
与えられた要素のテキスト表現を与えられた出力ストリームに書き出します。
func debugPrint (Any, separator: String, terminator: String)
Writes the textual representations of the given items most suitable for debugging into the standard output.
与えられた項目の、デバッグに最も適するテキスト表現を、標準出力に書き出します。
func debugPrint <Target>(Any, separator: String, terminator: String, to: inout Target)
Writes the textual representations of the given items most suitable for debugging into the given output stream.
与えられた項目の、デバッグに最も適するテキスト表現を、与えられた出力ストリームに書き出します。
func dump<T>(T, name: String?, indent: Int, maxDepth : Int, maxItems : Int) -> T
Dumps the given object’s contents using its mirror to standard output.
与えられたオブジェクトの内容をそれのミラーを使って標準出力にダンプします。
func dump<T, TargetStream>(T, to: inout TargetStream, name: String?, indent: Int, maxDepth : Int, maxItems : Int) -> T
Dumps the given object’s contents using its mirror to the specified output stream.
与えられたオブジェクトの内容をそれのミラーを使って指定出力ストリームにダンプします。