Inserts a collection of characters at the specified position.
SDK
- Xcode 7.1+
Framework
- Swift Standard Library
Declaration
Parameters
newElements
A collection of
Character
elements to insert into the string.i
A valid index of the string. If
i
is equal to the string’s end index, this methods appends the contents ofnew
to the string.Elements
Discussion
Calling this method invalidates any existing indices for use with this string.
Complexity: O(n), where n is the combined length of the string and new
.