protocol
StringInterpolationProtocol
Represents the contents of a string literal with interpolations while it's being built up.
Conforming Types | DefaultStringInterpolation |
---|---|
Associated Types |
|
Initializers
Creates an empty instance ready to be filled with string literal content.
Don't call this initializer directly. Instead, initialize a variable or constant using a string literal with interpolated expressions.
Swift passes this initializer a pair of arguments specifying the size of the literal segments and the number of interpolated segments. Use this information to estimate the amount of storage you will need.
- Parameter literalCapacity: The approximate size of all literal segments
combined. This is meant to be passed to
String.reserveCapacity(_:)
; it may be slightly larger or smaller than the sum of the counts of each literal segment.
- Parameter interpolationCount: The number of interpolations which will be appended. Use this value to estimate how much additional capacity will be needed for the interpolated segments.
Declaration
Instance Methods
Appends a literal segment to the interpolation.
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.
- Parameter literal: A string literal containing the characters that appear next in the string literal.
Declaration
mutating
func
appendLiteral
(
_
literal
:
Self
.
StringLiteralType
)
Each
ExpressibleByStringInterpolation
type has an associatedStringInterpolation
type which conforms toStringInterpolationProtocol
. Swift converts an expression like"The time is \(time)." as MyString
into a series of statements similar to:The
StringInterpolation
type is responsible for collecting the segments passed to itsappendLiteral(_:)
andappendInterpolation
methods and assembling them into a whole, converting as necessary. Once all of the segments are appended, the interpolation is passed to aninit(stringInterpolation:)
initializer on the type being created, which must extract the accumulated data from theStringInterpolation
.In simple cases, you can use
DefaultStringInterpolation
as the interpolation type for types that conform to theExpressibleByStringLiteral
protocol. To use the default interpolation, conform a type toExpressibleByStringInterpolation
and implementinit(stringLiteral: String)
. Values in interpolations are converted to strings, and then passed to that initializer just like any other string literal.Handling String Interpolations
With a custom interpolation type, each interpolated segment is translated into a call to a special
appendInterpolation
method. The contents of the interpolation's parentheses are treated as the call's argument list. That argument list can include multiple arguments and argument labels.The following examples show how string interpolations are translated into calls to
appendInterpolation
:The
appendInterpolation
methods in your custom type must be mutating instance methods that returnVoid
. This code shows a custom interpolation type's declaration of anappendInterpolation
method that provides special validation for user input:To use this interpolation method, create a string literal with an interpolation using the
validating
parameter label.appendInterpolation
methods support virtually all features of methods: they can have any number of parameters, can specify labels for any or all of their parameters, can provide default values, can have variadic parameters, and can have parameters with generic types. Most importantly, they can be overloaded, so a type that conforms toStringInterpolationProtocol
can provide several differentappendInterpolation
methods with different behaviors. AnappendInterpolation
method can also throw; when a user writes a literal with one of these interpolations, they must mark the string literal withtry
or one of its variants.