func append<S>(contentsOf : S)
Adds the elements of a sequence or collection to the end of this collection.
あるシーケンスまたコレクションに属するいくつかの要素をこのコレクションの終わりに加えます。
Availability
Technology
newElements
The elements to append to the collection. これらの要素をコレクションへ追加します。
The collection being appended to allocates any additional necessary storage to hold the new elements. コレクションは追加されることによって、新しい要素を保有するために何らかの追加的に必要なストレージを割り当てます。
The following example appends the elements of a Range<Int>
instance to an array of integers:
次の例は、Range<Int>
インスタンスからなるいくらかの要素を整数からなる配列に追加します:
Complexity: O(m), where m is the length of new
.
計算量:O(m)、ここでmはnew
の長さです。
func append<S>(contentsOf : S)