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 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
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
の長さです。
Note 注意
This documentation comment was inherited from Range
.
この文書化コメントは、Range
から引き継がれました。