XCode 16.2 日本語化計画
文字列リテラルで初期化できる型。
String 型と StaticString 型は ExpressibleByStringLiteral プロトコルに準拠しています。任意の長さの文字列リテラルを使用して、これらのいずれかの型の変数または定数をあなたは初期化できます。
ExpressibleByStringLiteral への準拠をあなたのカスタム型に追加するには、必須イニシャライザを実装します。
associatedtype StringLiteralType : _ExpressibleByBuiltinStringLiteral
文字列リテラルを表す型。
必須
init(stringLiteral: Self.StringLiteralType)
与えられた文字列値に初期化されたインスタンスを作成します。
必須
ExpressibleByExtendedGraphemeClusterLiteral
ExpressibleByUnicodeScalarLiteral
ExpressibleByStringInterpolation
protocol ExpressibleByExtendedGraphemeClusterLiteral
単一の拡張書記素クラスターを含む文字列リテラルで初期化できる型。
protocol ExpressibleByUnicodeScalarLiteral
単一の Unicode スカラー値を含む文字列リテラルで初期化できる型。
protocol ExpressibleByStringInterpolation
式を含む文字列リテラルを使用して文字列補間によって初期化できる型。
protocol StringInterpolationProtocol
構築中に補間された文字列リテラルの内容を表します。
struct DefaultStringInterpolation
構築中に補間される文字列リテラルを表します。