Initializer
init(stringInterpolation:)
Creates an instance from a string interpolation.
ある文字列補間からインスタンスを作成します。
Required. Default implementation provided.
必須。 省略時の実装の提供。
Technology
- Swift Standard Library
Swift標準ライブラリ
Parameters
パラメータ
stringInterpolation
An instance of StringInterpolation
which has had each segment of the string literal appended to it.
StringInterpolation
のインスタンス、それはそれへと加えられた文字列リテラルの各文節を持っています。
Discussion
解説
Most StringInterpolation
types will store information about the literals and interpolations appended to them in one or more properties. init(stringInterpolation:)
should use these properties to initialize the instance.
ほとんどのStringInterpolation
型は、それらに加えられたリテラルと補間についての情報を1つ以上のプロパティにおいて格納します。init(stringInterpolation:)
は、それらのプロパティを使ってインスタンスを初期化すべきです。
Default Implementations
省略時実装
ExpressibleByStringInterpolation Implementations
ExpressibleByStringInterpolation 実装
init(stringInterpolation: DefaultStringInterpolation)
Creates a new instance from an interpolated string literal.
新しいインスタンスを補間文字列リテラルから作成します。
Available when
StringInterpolation
is DefaultStringInterpolation
.
StringInterpolation
がDefaultStringInterpolation
である時に利用可能です。