func append<S>(contentsOf : S)
Adds the elements of a sequence to the end of the array.
あるシーケンスに属する要素を配列の終わりに加えます。
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 two collections.
2つのコレクションの要素を連結することによって新しいコレクションを作成します。
static func += <Other>(inout Array<Element>, Other)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。