Utility class for membership tests on a 1D interval.
More...
#include <IntervalUtility.hpp>
template<class TValue>
class Kratos::WRApp::Impl::IntervalUtility< TValue >
Utility class for membership tests on a 1D interval.
- Note
- This class template has specializations for double and int but is not implemented for other types.
◆ IntervalUtility() [1/4]
Default constructor initializing boundaries to "Begin" and "End".
◆ IntervalUtility() [2/4]
Construct from parameters containing "interval".
"interval" is expected as an array with exactly 2 items, defining the begin and end of the interval respectively. The first item can either be a numeric value or "Begin" (setting the smallest representable value of TValue), while the second one can be a numeric value or "End" (setting the highest representable value of TValue).
- Note
- String values ("Begin" and "End") are replaced with their numeric counterparts in the input Settings.
-
If "interval" is not in Settings, an "interval" with values corresponding to "Begin" and "End" is added to it.
-
Other parameters in Settings are not checked.
- Exceptions
-
If | Settings has "interval" but has invalid value:
- not an array of size 2
- first item is not "Begin" or an appropriate numeric value
- second item is not "End" or an appropriate numeric value
- swapped boundaries (end < begin)
|
◆ IntervalUtility() [3/4]
◆ IntervalUtility() [4/4]
◆ GetDefaultParameters()
template<class TValue >
static Parameters GetDefaultParameters |
( |
| ) |
|
|
static |
◆ GetIntervalBegin()
template<class TValue >
TValue GetIntervalBegin |
( |
| ) |
const |
|
noexcept |
◆ GetIntervalEnd()
template<class TValue >
TValue GetIntervalEnd |
( |
| ) |
const |
|
noexcept |
◆ Info()
template<class TValue >
std::string Info |
( |
| ) |
const |
Return information as a string.
◆ IsInInterval()
template<class TValue >
bool IsInInterval |
( |
TValue |
Value | ) |
const |
|
noexcept |
Check whether the input value is within the defined closed interval [Begin, End].
◆ KRATOS_CLASS_POINTER_DEFINITION()
◆ PrintData()
template<class TValue >
void PrintData |
( |
std::ostream & |
rOStream | ) |
const |
◆ PrintInfo()
template<class TValue >
void PrintInfo |
( |
std::ostream & |
rOStream | ) |
const |
Print information about this object.
The documentation for this class was generated from the following file: