61 start =
static_cast<T
>(1);
62 end =
static_cast<T
>(0);
216 return start == other.start &&
end == other.end;
232 template <
class T,
class AX = std::allocator<
interval<T>>>
233 using interval_vector = std::vector<interval<T>, AX>;
Numerical interval.
Definition interval.hpp:18
interval operator-=(const T x)
Moves interval towards the beginning by a number.
Definition interval.hpp:175
interval operator+(const interval &other) const
Adds two intervals by components.
Definition interval.hpp:88
interval(T x) noexcept
Constructs a zero-size interval.
Definition interval.hpp:32
bool contains(T x) const
Is value in interval?
Definition interval.hpp:79
bool empty() const
Is interval empty?
Definition interval.hpp:54
interval operator+=(const T x)
Moves interval towards the end by a number.
Definition interval.hpp:112
interval(T _start, T _end) noexcept
Constructs an interval.
Definition interval.hpp:40
interval operator++(int)
Moves interval towards the end by one.
Definition interval.hpp:136
interval operator++()
Moves interval towards the end by one.
Definition interval.hpp:124
interval operator+(const T x) const
Moves interval towards the end by a number.
Definition interval.hpp:100
T size() const
Returns interval size.
Definition interval.hpp:47
T end
interval end
Definition interval.hpp:20
interval() noexcept
Constructs an invalid interval.
Definition interval.hpp:25
interval operator-(const T x) const
Moves interval towards the beginning by a number.
Definition interval.hpp:163
interval operator-(const interval &other) const
Subtracts two intervals by components.
Definition interval.hpp:151
bool operator!=(const interval &other) const
Are intervals different?
Definition interval.hpp:226
void invalidate()
Invalidates interval.
Definition interval.hpp:59
interval operator--(int)
Moves interval towards the begginning by one.
Definition interval.hpp:199
T start
interval start
Definition interval.hpp:19
bool operator==(const interval &other) const
Are intervals identical?
Definition interval.hpp:214
interval operator--()
Moves interval towards the beginning by one.
Definition interval.hpp:187