Instance Method インスタンスメソッド

popFirst()

Removes and returns the first element of the collection. コレクションの最初の要素を削除して返します。

Declaration 宣言

mutating func popFirst() -> Self.Element?
Available when Self is SubSequence. SelfSubSequenceである時に利用可能です。

Return Value 戻り値

The first element of the collection if the collection is not empty; otherwise, nil. コレクションが空でないならばコレクションの最初の要素;そうでなければnil

Discussion 解説

Complexity: O(1) 計算量:O(1)

See Also 参照

Selecting and Excluding Elements 要素の選択と除外