No overview available.
SDK
- Xcode 10.2+
Framework
- Swift Standard Library
No overview available.
SDK
Framework
func append<S>(contents Of: S)
Adds the elements of a sequence to the end of the array.
func append<S>(contents Of: 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.