MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / removeLast

Method removeLast

source/core/StarList.hpp:500–504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 6

startCraftingMethod · 0.45
tickCraftingMethod · 0.45
convexHullMethod · 0.45
deduplicateVertexesMethod · 0.45
addTextureMethod · 0.45
compressionPassMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected