36#ifndef IMT_BASE_CORE_UTIL_STRONGTYPEDEF_H
37#define IMT_BASE_CORE_UTIL_STRONGTYPEDEF_H
50template<
class T,
template<
class>
class CrtpType>
53 return static_cast<T&
>(*this);
57 return static_cast<T const&
>(*this);
107 return other.get() == this->
underlying().get();
110 return !(*
this == other);
120 return this->
underlying().get() < other.get();
123 return other.get() < this->
underlying().get();
126 return !(other.get() < this->
underlying().get());
129 return !(*
this < other);
148 return T(this->
underlying().get() + other.get());
162 return T(this->
underlying().get() - other.get());
185 return T(this->
underlying().get() * other.get());
195 return T(this->
underlying().get() / other.get());
264template<
class T,
class TagType,
template<
class>
class Skill1 =
Ignore1,
template<
class>
class Skill2 =
Ignore2,
template<
class>
class Skill3 =
Ignore3,
template<
class>
class Skill4 =
Ignore4,
template<
class>
class Skill5 =
Ignore5,
template<
class>
class Skill6 =
Ignore6,
template<
class>
class Skill7 =
Ignore7,
template<
class>
class Skill8 =
Ignore8,
template<
class>
class Skill9 =
Ignore9,
template<
class>
class Skill10 =
Ignore10>
266 :
public Skill1<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
267 public Skill2<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
268 public Skill3<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
269 public Skill4<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
270 public Skill5<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
271 public Skill6<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
272 public Skill7<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
273 public Skill8<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
274 public Skill9<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
275 public Skill10<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>> {
281 constexpr StrongTypedef() noexcept(std::is_nothrow_default_constructible<T>::value) :
288 explicit constexpr StrongTypedef(T
const& value)
noexcept(std::is_nothrow_copy_constructible<T>::value) :
295 explicit constexpr StrongTypedef(T&& value)
noexcept(std::is_nothrow_move_constructible<T>::value) :
296 m_value(std::move(value)) {
309 T
const&
get() const noexcept {
Prevent bugs at compile time by providing strongly-typed and expressive interfaces with zero overhead...
constexpr StrongTypedef(T &&value) noexcept(std::is_nothrow_move_constructible< T >::value)
Moves given value into this.
constexpr StrongTypedef() noexcept(std::is_nothrow_default_constructible< T >::value)
Value-Initializes underlying value.
T & get() noexcept
Returns writeable reference to held value.
constexpr StrongTypedef(T const &value) noexcept(std::is_nothrow_copy_constructible< T >::value)
Initializes this with given value.
T const & get() const noexcept
Returns read-only reference to held value.
This is a application specific file which is used to configure Imt.Base.Core.Math.
Requires +, += from the underlying type and provides +, +=.
T operator+(T const &other) const
T & operator+=(T const &other)
Groups Addable and Subtractable to one skill.
Additive and Multiplicative to one skill.
Requires == from the underlying type and provides == and !=.
T & underlying() noexcept
T const & underlying() const noexcept
Requires –i from the underlying type and provides –i, i–.
Requires / from the underlying type and provides /.
T operator/(T const &other) const
Requires == from the underlying type and provides == and !=.
bool operator!=(T const &other) const
bool operator==(T const &other) const
Requires ++i from the underlying type and provides ++i, i++.
Requires < from the underlying type and provides <, >, <=, >=.
bool operator>=(T const &other) const
bool operator<(T const &other) const
bool operator>(T const &other) const
bool operator<=(T const &other) const
Requires * from the underlying type and provides *.
T operator*(T const &other) const
Groups Multipliable and Dividable to one skill.
Requires -, -= from the underlying type and provides -, -=.
T & operator-=(T const &other)
T operator-(T const &other) const
Provides ==, !=, <, >, <=, >=.
Groups imt::base::core::util::Incrementable and imt::base::core::util::Decrementable to one skill.