Inserts a new element into the collection at the specified position.
Required. Default implementation provided.
SDK
- Xcode 10.0+
Framework
- Swift Standard Library
Declaration
Parameters
newElement
The new element to insert into the collection.
i
The position at which to insert the new element.
index
must be a valid index into the collection.
Discussion
The new element is inserted before the element currently at the specified index. If you pass the collection’s end
property as the index
parameter, the new element is appended to the collection.
Calling this method may invalidate any existing indices for use with this collection.
Complexity: O(n), where n is the length of the collection. If i == end
, this method is equivalent to append(_:)
.