Removes and returns the first element of the collection.
SDK
- Xcode 8.0+
Framework
- Swift Standard Library
Declaration
@discardableResult mutating func removeFirst() -> Self.Element
Available when Self is SubSequence .
Return Value
The first element of the collection.
Discussion
The collection must not be empty.
Complexity: O(1)