A string literal containing the characters that appear next in the string literal. 次にこの文字列リテラルにおいて現れる文字を含んでいる文字列リテラル。
Instance Method
インスタンスメソッド
append
appendLiteral(_:)
Appends a literal segment to the interpolation.
あるリテラル文節をその補間に加えます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func appendLiteral(_ literal: Self.StringLiteralType
)
Parameters パラメータ
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 append
. For more information, see the top-level String
documentation.
補間式はこのメソッドを通り抜けられません;代わりに、Swiftはappend
のオーバーロードを選択します。更なる情報として、トップレベルのString
を見てください。