bool empty() const { // return whether the stack is empty return elems.empty(); }
inline bool isnil (const CONT& container) { return container.empty(); }
bool empty() const { return elems.empty(); }