16#ifndef MICRO_TEST_PLUS_TYPE_TRAITS_H_
17#define MICRO_TEST_PLUS_TYPE_TRAITS_H_
30#pragma GCC diagnostic push
32#pragma clang diagnostic ignored "-Wc++98-compat"
33#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
58 template <
class T,
class...>
64#if defined(__DOXYGEN__)
72 struct function_traits : function_traits<
decltype (&T::operator())>
80 template <
class R,
class... Args_T>
81 struct function_traits<R (*) (Args_T...)>
90 template <
class R,
class... Args_T>
91 struct function_traits<R (Args_T...)>
100 template <
class R,
class T,
class... Args_T>
101 struct function_traits<R (T::*) (Args_T...)>
110 template <
class R,
class T,
class... Args_T>
111 struct function_traits<R (T::*) (Args_T...) const>
120 template <
class... Ts,
class Expr_T>
136 [] (
auto t) ->
decltype (t.begin (), t.end (), void ()) {});
140 =
is_valid<T> ([] (
auto t) ->
decltype (
void (t.npos)) {});
144 =
is_valid<T> ([] (
auto t) ->
decltype (
void (t.value)) {});
148 =
is_valid<T> ([] (
auto t) ->
decltype (
void (t.epsilon)) {});
159#if defined(__clang__) or defined(_MSC_VER)
160 template <
class From,
class To>
163 template <
class From,
class To>
175 template <
class From,
class To>
218 [[nodiscard]]
constexpr auto
224 [[nodiscard]]
constexpr explicit
230 [[nodiscard]]
constexpr auto
243 template <
class T, auto N, auto D, auto Size, auto P = 1>
250 = T (P) * (T (N) + (T (D) /
math::pow (T (10), Size)));
252 [[nodiscard]]
constexpr auto
258 [[nodiscard]]
constexpr explicit
264 [[nodiscard]]
constexpr auto
283 [[nodiscard]]
constexpr explicit
289 [[nodiscard]]
constexpr decltype (
auto)
305 template <
class T,
class =
int>
314 [[nodiscard]]
constexpr explicit
320 [[nodiscard]]
constexpr decltype (
auto)
344 constexpr value (
const T& _value,
const T precision) :
value_{ _value }
353 math::den_size<unsigned long long> (val)) }
357 [[nodiscard]]
constexpr explicit
363 [[nodiscard]]
constexpr decltype (
auto)
378#pragma GCC diagnostic pop
Local mathematical functions.
constexpr auto pow(const T base, const Exp_T exp) -> T
Generic 'power of', to raise base to exponent (base ^ exp).
Local type traits. Some may have standard equivalents, but better keep them locally.
static constexpr auto has_npos_v
typename requires_< Cond >::type requires_t
static constexpr auto has_epsilon_v
constexpr auto is_convertible_v
static constexpr auto has_value_v
static constexpr auto is_container_v
constexpr auto is_valid(Expr_T expr) -> decltype(expr(declval< Ts... >()), bool())
constexpr auto is_floating_point_v
constexpr auto is_convertible(int) -> decltype(bool(To(declval< From >())))
A generic floating point constant, with custom size and precision. It has a getter and a '-' operator...
constexpr auto get() const
static constexpr auto epsilon
static constexpr auto value
constexpr auto operator-() const
constexpr decltype(auto) get() const
constexpr genuine_integral_value(const T &_value)
A generic integral constant. It has a getter and a '-' operator to return the negative value.
static constexpr auto value
constexpr auto get() const
Empty base class of all operators.
constexpr value(const T &val)
constexpr decltype(auto) get() const
constexpr value(const T &_value, const T precision)
constexpr decltype(auto) get() const
constexpr value(const T &_value)