Interpolates the given value’s textual representation into the string literal being created.
与えられた値のもつテキスト表現を、その作成されている文字列リテラルへと補間します。
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
宣言
mutatingfuncappendInterpolation<T>(_value: T)
Discussion
解説
Do not call this method directly. It is used by the compiler when interpreting string interpolations. Instead, use string interpolation to create a new string by including values, literals, variables, or expressions enclosed in parentheses, prefixed by a backslash (\(…)).
このメソッドを直接に呼ばないでください。それは文字列補間を解釈する時にコンパイラによって使われます。代わりに、文字列補間を使って、バックスラッシュ\(…)を前に置いた丸括弧に囲まれた値、リテラル、変数、または式を含めることで、新しい文字列を作成してください。