Operator

+(_:_:)

No overview available.

Declaration

static func + (lhs: Array<Element>, rhs: Array<Element>) -> Array<Element>

See Also

Combining Arrays

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 a collection and a sequence.

static func + <Other>(Array<Element>, Other) -> Array<Element>

Creates a new collection by concatenating the elements of two collections.

static func += <Other>(inout Array<Element>, Other)

Appends the elements of a sequence to a range-replaceable collection.