9template <
typename ITER>
A wrapper for std::vector.
Definition array.hpp:72
A base interface for all objects that can be iterated over.
Definition iterable.hpp:10
virtual ITER begin() const noexcept=0
Get an iterator for the first element in this object.
virtual ITER end() const noexcept=0
Get an iterator after the last element of this object.
virtual ~iterable() noexcept
Virtual destructor.
Definition iterable.hpp:13