addingObjects(from:)
Returns a new array that is a copy of the receiving array with the objects contained in another array added to the end.
Declaration
func addingObjects(from otherArray: [Any]) -> [Any]Parameters
- otherArray:
An array.
Return Value
A new array that is a copy of the receiving array with the objects contained in otherArray added to the end.