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

removeLast()

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

Declaration 宣言

@discardableResult mutating func removeLast() -> Base.Element
Available when Base conforms to BidirectionalCollection. BaseBidirectionalCollectionに準拠する時に利用可能です。

Return Value 戻り値

The last element of the collection. コレクションの最後の要素。

Discussion 解説

The collection must not be empty. To remove the last element of a collection that might be empty, use the popLast() method instead. コレクションは空であってはなりません。空であるかもしれないあるコレクションの最後の要素を削除するには、popLast()関数を使ってください。

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