The elements to append to the collection. これらの要素をコレクションへ追加します。
Generic Instance Method
総称体インスタンスメソッド
append(contents
append(contentsOf:)
Adds the elements of a sequence or collection to the end of this collection.
あるシーケンスまたコレクションに属するいくつかの要素をこのコレクションの終わりに加えます。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
newElements
Discussion 議論
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
の長さです。