Generic Operator

+(_:_:)

Creates a new collection by concatenating the elements of a collection and a sequence. あるコレクションとあるシーケンスの要素を連結することによって新しいコレクションを作成します。

Declaration 宣言

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

Parameters パラメータ

lhs

A range-replaceable collection. 範囲置換可能なコレクション。

rhs

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

Discussion 解説

The two arguments must have the same Element type. For example, you can concatenate the elements of an integer array and a Range<Int> instance. 2つの引数は、同じElement型を持たなければなりません。例えば、あなたはある整数配列とあるRange<Int>インスタンスとに属する要素を連結することができます。


let numbers = [1, 2, 3, 4]
let moreNumbers = numbers + (5...10)
print(moreNumbers)
// Prints "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]"

The resulting collection has the type of the argument on the left-hand side. In the example above, moreNumbers has the same type as numbers, which is [Int]. 結果となるコレクションは、左手側の引数の型を持ちます。上の例において、moreNumbersnumbersと同じ型を持ちます、それは[Int]です。

See Also 参照

Combining Arrays 配列を結合する