1 #ifndef TERMOX_COMMON_RANGE_HPP
2 #define TERMOX_COMMON_RANGE_HPP
6 template <
typename Iter_1,
typename Iter_2>
13 [[nodiscard]] constexpr
auto begin()
const {
return begin_; }
16 [[nodiscard]] constexpr
auto end()
const {
return end_; }
Holds [begin, end) half-open range of iterators and provides access.
Definition: range.hpp:7
constexpr auto begin() const
Return the iterator to the beginning of the Range.
Definition: range.hpp:13
constexpr auto end() const
Return the iterator to the end of the Range.
Definition: range.hpp:16