[stdlib] finish public non-protocol docs

The 58 undocumented public non-operator APIs still present in core are
all on non-exposed (underscored) APIs.

Swift SVN r22263
This commit is contained in:
Dave Abrahams
2014-09-24 12:31:45 +00:00
parent 3b517cb41d
commit a7f3e4222e
16 changed files with 273 additions and 12 deletions

View File

@@ -387,7 +387,9 @@ public protocol DictionaryLiteralConvertible {
/// Conforming types can be initialized with string interpolations
/// containing `\(`\ ...\ `)` clauses.
public protocol StringInterpolationConvertible {
/// Create an instance by concatenating the elements of `strings`
init(stringInterpolation strings: Self...)
/// Create an instance containing `expr`\ 's `print` representation
init<T>(stringInterpolationSegment expr: T)
}