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

appendLiteral(_:)

Appends a literal segment to the interpolation. あるリテラル文節をその補間に加えます。

Declaration 宣言

mutating func appendLiteral(_ literal: Self.StringLiteralType)

Parameters パラメータ

literal

A string literal containing the characters that appear next in the string literal. 次にこの文字列リテラルにおいて現れる文字を含んでいる文字列リテラル。

Discussion 解説

Don’t call this method directly. Instead, initialize a variable or constant using a string literal with interpolated expressions. このメソッドを直に呼ばないでください。代わりに、補間式いくらかを持つある文字列リテラルを使って変数や定数を初期化してください。

Interpolated expressions don’t pass through this method; instead, Swift selects an overload of appendInterpolation. For more information, see the top-level StringInterpolationProtocol documentation. 補間式はこのメソッドを通り抜けられません;代わりに、SwiftはappendInterpolationのオーバーロードを選択します。更なる情報として、トップレベルのStringInterpolationProtocolを見てください。