#include <cassert>#include <cstdio>#include <iostream>#include <iterator>#include <memory>#include <stdexcept>#include <string>#include <type_traits>#include "genesis/utils/containers/interval_tree/fwd.hpp"Go to the source code of this file.
Classes | |
| struct | EmptyIntervalData |
| Empty class used as default for Interval data. More... | |
| struct | Interval< DataType, NumericalType, IntervalKind > |
| Type to store an interval (range) between two numbers, as used in the IntervalTree. More... | |
| struct | IntervalClosed |
Helper type to define a closed [] Interval. More... | |
| struct | IntervalLeftOpen |
Helper type to define a left open (] Interval. More... | |
| struct | IntervalOpen |
Helper type to define an open () Interval. More... | |
| struct | IntervalRightOpen |
Helper type to define a right open [) Interval. More... | |
Namespaces | |
| genesis | |
| Container namespace for all symbols of genesis in order to keep them separate when used as a library. | |
| genesis::utils | |
Typedefs | |
| using | DefaultIntervalNumericalType = int |
| Default numerical type to use in an Interval. More... | |