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

popLast()

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

Declaration 宣言

mutating func popLast() -> Int?

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)

See Also 参照

Selecting Nodes ノードを選択する