| 498 | |
| 499 | template <typename BaseList> |
| 500 | void ListMixin<BaseList>::removeLast() { |
| 501 | if (Base::empty()) |
| 502 | throw OutOfRangeException("removeLast() called on empty list"); |
| 503 | Base::pop_back(); |
| 504 | } |
| 505 | |
| 506 | template <typename BaseList> |
| 507 | auto ListMixin<BaseList>::takeLast() -> value_type { |
no outgoing calls
no test coverage detected