Function
remove(at:)
Removes and returns the element at index.
fun remove(at index: Int) -> Element { inout }
Preconditions
-
index is in the range 0 ..< count().
Complexity
O(n), where n is the number of elements in self.
Removes and returns the element at index.
fun remove(at index: Int) -> Element { inout }
index is in the range 0 ..< count().
O(n), where n is the number of elements in self.