Generic Operator

+=(_:_:)

Appends the elements of a sequence to a range-replaceable collection. あるシーケンスの要素を範囲置換コレクションに加えます。

Declaration 宣言

static func += <Other>(lhs: inout Array<Element>, rhs: Other) where Other : Sequence, Element == Other.Element

Parameters パラメータ

lhs

The array to append to. 追加先の配列。

rhs

A collection or finite sequence. コレクションまたは有限のシーケンス。

Discussion 解説

Use this operator to append the elements of a sequence to the end of range-replaceable collection with same Element type. This example appends the elements of a Range<Int> instance to an array of integers. この演算子を使って、あるシーケンスに属するいくらかの要素を同じElement型を持つ範囲置換可能なコレクションの終わりに加えてください。例えば、あなたはあるRange<Int>インスタンスに属する複数要素を整数の配列に追加することができます。


var numbers = [1, 2, 3, 4, 5]
numbers += 10...15
print(numbers)
// Prints "[1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15]"

Complexity: O(m), where m is the length of the right-hand-side argument. 計算量:O(m)、ここでmは右手側の引数の長さです。

See Also 参照

Combining Arrays 配列を結合する