Protocol

TextOutputStreamable

A source of text-streaming operations. テキストストリーミング操作のソース。

Declaration 宣言

protocol TextOutputStreamable

Overview 概要

Instances of types that conform to the TextOutputStreamable protocol can write their value to instances of any type that conforms to the TextOutputStream protocol. The Swift standard library’s text-related types, String, Character, and Unicode.Scalar, all conform to TextOutputStreamable. TextOutputStreamableプロトコルに準拠する型のインスタンスは、それらの値をTextOutputStreamプロトコルに準拠するあらゆる型のインスタンスへ書き出すことができます。Swift標準ライブラリのテキスト関連の型、StringCharacter、そしてUnicode.Scalarは、すべてTextOutputStreamableに準拠します。

Conforming to the TextOutputStreamable Protocol TextOutputStreamableプロトコルに準拠する

To add TextOutputStreamable conformance to a custom type, implement the required write(to:) method. Call the given output stream’s write(_:) method in your implementation. TextOutputStreamable準拠をあつらえの型に加えるには、必須write(to:)メソッドを実装してください。与えられた出力ストリームのもつwrite(_:)メソッドをあなたの実装において呼び出してください。

Topics 話題

Instance Methods インスタンスメソッド

Relationships 関係

Inherited By 継承される先

Conforming Types これらの型が準拠

See Also 参照

Streams ストリーム