36#ifndef IMT_BASE_CORE_UTIL_RANGE_H
37#define IMT_BASE_CORE_UTIL_RANGE_H
50template<
typename ValueType>
61 Range(ValueType
const& lowerThreshold, ValueType
const& upperThreshold)
noexcept;
68 bool isInRange(ValueType
const& value)
const;
75 bool isAbove(ValueType
const& value)
const;
82 bool isBelow(ValueType
const& value)
const;
105 ValueType
const m_lowerThreshold;
106 ValueType
const m_upperThreshold;
109template<
typename ValueType>
111 m_lowerThreshold {(lowerThreshold < upperThreshold) ? lowerThreshold : upperThreshold},
112 m_upperThreshold {(lowerThreshold > upperThreshold) ? lowerThreshold : upperThreshold} {
115template<
typename ValueType>
117 return ((value >= m_lowerThreshold) && (value <= m_upperThreshold));
120template<
typename ValueType>
122 return (value > m_upperThreshold);
125template<
typename ValueType>
127 return (value < m_lowerThreshold);
130template<
typename ValueType>
132 return m_lowerThreshold;
135template<
typename ValueType>
137 return m_upperThreshold;
140template<
typename ValueType>
142 return std::min(std::max(value, m_lowerThreshold), m_upperThreshold);
A range of values limited by an lower and upper value that is included in the range.
ValueType const & getLowerThreshold() const
Returns the lower threshold.
bool isBelow(ValueType const &value) const
Returns true if the given value is below the lower threshold of the range.
bool isInRange(ValueType const &value) const
Returns true if the given value is inside the range.
ValueType const & getUpperThreshold() const
Returns the upper threshold.
ValueType truncateValue(ValueType const &value) const
Truncates the value to the range.
Range(ValueType const &lowerThreshold, ValueType const &upperThreshold) noexcept
Constructor.
bool isAbove(ValueType const &value) const
Returns true if the given value is above the upper threshold of the range.
This is a application specific file which is used to configure Imt.Base.Core.Math.