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

append(contentsOf:)

Appends the Unicode scalar values in the given sequence to the view. 与えられたシーケンスの中のユニコードスカラー値をビューに追加します。

Declaration 宣言

mutating func append<S>(contentsOf newElements: S) where S : Sequence, S.Element == Unicode.Scalar

Parameters パラメータ

newElements

A sequence of Unicode scalar values. ユニコードスカラー値のシーケンス。

Discussion 解説

Complexity: O(n), where n is the length of the resulting view. 計算量:O(n)、ここでnは結果となるビューの長さです。

Relationships 関係

From Protocol 由来プロトコル