The elements to append to the array. 配列に追加する要素。
Generic Instance Method
総称体インスタンスメソッド
append(contents
append(contentsOf:)
Adds the elements of a sequence to the end of the array.
あるシーケンスに属する要素を配列の終わりに加えます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
newElements
Discussion 解説
Use this method to append the elements of a sequence to the end of this array. This example appends the elements of a Range<Int>
instance to an array of integers.
このメソッドを使うことで、あるシーケンスに属する要素をこの配列の終わりに追加してください。この例は、Range<Int>
インスタンスの要素を整数からなる配列に加えます。
Complexity: O(m) on average, where m is the length of new
, over many calls to append(contents
on the same array.
計算量:O(m)、ここでmはnew
の長さで、同じ配列上でのappend(contents
への多くの呼び出しに対してで。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Combining Arrays 配列を結合する
func append<S>(contentsOf : S)
Adds the elements of a sequence or collection to the end of this collection.
あるシーケンスまたコレクションに属するいくつかの要素をこのコレクションの終わりに加えます。
static func + <Other>(Other, Array<Element>) -> Array<Element>
Creates a new collection by concatenating the elements of a sequence and a collection.
あるシーケンスとあるコレクションの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(Array<Element>, Other) -> Array<Element>
Creates a new collection by concatenating the elements of a collection and a sequence.
あるコレクションとあるシーケンスの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(Array<Element>, Other) -> Array<Element>
Creates a new collection by concatenating the elements of two collections.
2つのコレクションの要素を連結することによって新しいコレクションを作成します。
static func += <Other>(inout Array<Element>, Other)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。