256using namespace Aleph;
294# define N (stack.top().n)
295# define F1 (stack.top().f1)
296# define RESULT (stack.top().result)
297# define RETURN_POINT (stack.top().return_point)
347 if (stack.
size() == 1)
359 switch (return_point)
Stack implemented with simple dynamic array and with bounds verification.
size_t size() const noexcept
Return the number of elements stored in the stack.
T pop()
Extract the last more recently inserted element.
T & push(const T &data)
Push into stack a copy of data
Main namespace for Aleph-w library functions.
DynList< T > maps(const C &c, Op op)
Classic map operation.
Stack implementations backed by dynamic or fixed arrays.