func removeFirst () -> Self.Element
Removes and returns the first element of the collection.
コレクションの最初の要素を削除して返します。
Availability
Technology
@discardableResult mutating func removeFirst() -> Self.Element
Self
is
SubSequence
.
Self
が
SubSequence
である時に利用可能です。
The first element of the collection. コレクションの最初の要素。
The collection must not be empty. コレクションは空であってはなりません。
Calling this method may invalidate all saved indices of this collection. Do not rely on a previously stored index value after altering a collection with any operation that can change its length. このメソッドを呼び出すことは、このコレクションの全ての保存されたインデックスを無効にします。あるコレクションをそれの長さを変える何らかの演算で手直し後に、以前に格納されたインデックス値を当てにしないでください。
Complexity: O(1) 計算量:O(1)
func removeFirst () -> Self.Element