append(contentsOf:)
Appends the characters in the given sequence to the string.
Declaration
mutating func append<S>(contentsOf newElements: S) where S : Sequence, S.Element == CharacterParameters
- newElements:
A sequence of characters.
Appends the characters in the given sequence to the string.
mutating func append<S>(contentsOf newElements: S) where S : Sequence, S.Element == CharacterA sequence of characters.