Return Value 戻り値
The last element of the collection. コレクションの最後の要素。
Availability
Technology
@discardableResult mutating func removeLast() -> Elements.Index
Elements
conforms to BidirectionalCollection
.
Elements
がBidirectionalCollection
に準拠する時に利用可能です。
The last element of the collection. コレクションの最後の要素。
The collection must not be empty. To remove the last element of a collection that might be empty, use the pop
method instead.
コレクションは空であってはなりません。空であるかもしれないあるコレクションの最後の要素を削除するには、pop
関数を使ってください。
Complexity: O(1) 計算量:O(1)