|
OpenABF 2.1.0
|
Lightweight non-owning range adapter holding begin/end iterators. More...
#include <OpenABF/OpenABF.hpp>
Public Member Functions | |
| auto | begin () const -> Iter |
| auto | end () const -> Iter |
| auto | empty () const -> bool |
| auto | front () const -> decltype(*first_) |
Public Attributes | |
| Iter | first_ |
| Iter | last_ |
Lightweight non-owning range adapter holding begin/end iterators.
Supports range-based for loops, empty(), and front(). Used as the return type for lazy mesh iteration methods.
Range begin iterator.
True if the range is empty.
Range end iterator.
|
inline |
First element of the range.
| Iter OpenABF::detail::Range< Iter >::first_ |
First iterator in the range.
| Iter OpenABF::detail::Range< Iter >::last_ |
One-past-last iterator in the range.