3#ifndef IMT_BASE_CORE_UTIL_OPTIONAL_H
4#define IMT_BASE_CORE_UTIL_OPTIONAL_H
20template<
typename ElementType>
57 inline ElementType
value()
const {
69 inline ElementType
valueOr(ElementType
const fallbackValue)
const noexcept {
100 operator bool() const noexcept {
115template<
typename ElementType>
117 if (!left.hasValue() && !right.hasValue()) {
120 if (!left.hasValue() || !right.hasValue()) {
123 return left.value() == right.value();
131template<
typename ElementType>
133 return !(left == right);
141template<
typename ElementType>
143 if (!left.hasValue()) {
146 if (!right.hasValue()) {
149 return left.value() > right.value();
157template<
typename ElementType>
159 if (!left.hasValue()) {
162 if (!right.hasValue()) {
165 return left.value() < right.value();
173template<
typename ElementType>
186template<
typename ElementType>
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
Port of the std::optional type.
constexpr Optional(ElementType const value) noexcept
Constructs an optional object with a value.
constexpr Optional() noexcept
Constructs an empty optional object with no value.
bool hasValue() const noexcept
Check if a value is contained.
ElementType valueOr(ElementType const fallbackValue) const noexcept
Gets the contained value or the given fallback value.
ElementType value() const
Gets the contained value.
ElementType operator*() const
Gets the contained value.
ElementType operator->() const
Gets the contained value.
bool operator<(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than operator overload.
bool operator>=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than or equal operator overload.
bool operator>(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than operator overload.
bool operator<=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than or equal operator overload.
bool operator==(DateTimeStamp const left, DateTimeStamp const right) noexcept
Equals operator overload.
bool operator!=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Not equals operator overload.
This is a application specific file which is used to configure Imt.Base.Core.Math.