Generic Instance Method 総称体インスタンスメソッド

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 == Character

Parameters パラメータ

newElements

A sequence of characters. いくつかの文字からなるシーケンス。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Appending Strings and Characters 文字列と文字を追加する