We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bbac42 commit c2989f3Copy full SHA for c2989f3
stdlib/public/core/CompilerProtocols.swift
@@ -876,7 +876,11 @@ public protocol StringInterpolationProtocol {
876
/// that appear next in the string literal.
877
mutating func appendLiteral(_ literal: StringLiteralType)
878
879
- // Informal requirement: mutating func appendInterpolation(...)
+ // Informal requirement: Any desired appendInterpolation overloads, e.g.:
880
+ //
881
+ // mutating func appendInterpolation<T>(_: T)
882
+ // mutating func appendInterpolation(_: Int, radix: Int)
883
+ // mutating func appendInterpolation<T: Encodable>(json: T) throws
884
}
885
886
/// A type that can be initialized using a color literal (e.g.
0 commit comments