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

popLast()

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

Declaration 宣言

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

Return Value 戻り値

The last element of the collection if the collection has one or more elements; otherwise, nil. コレクションが1つ以上の要素を持つならばコレクションの最後の要素;そうでなければnil

Discussion 解説

You can use popLast() to remove the last element of a collection that might be empty. The removeLast() method must be used only on a nonempty collection. あなたはpopLast()を使って、空であるかもしれないコレクションの最後の要素を削除できます。removeLast()メソッドは、空でないコレクションでのみ使われるべきです。

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