func write<Target>(to: inout Target)
Overview 概要
Instances of types that conform to the Text
protocol can write their value to instances of any type that conforms to the Text
protocol. The Swift standard library’s text-related types, String
, Character
, and Unicode
, all conform to Text
.
Text
プロトコルに準拠する型のインスタンスは、それらの値をText
プロトコルに準拠するあらゆる型のインスタンスへ書き出すことができます。Swift標準ライブラリのテキスト関連の型、String
、Character
、そしてUnicode
は、すべてText
に準拠します。
Conforming to the TextOutputStreamable Protocol TextOutputStreamableプロトコルに準拠する
To add Text
conformance to a custom type, implement the required write(to:)
method. Call the given output stream’s write(_:)
method in your implementation.
Text
準拠をあつらえの型に加えるには、必須write(to:)
メソッドを実装してください。与えられた出力ストリームのもつwrite(_:)
メソッドをあなたの実装において呼び出してください。