5 #ifndef LIN_MATH_FUNCTORS_HPP_ 6 #define LIN_MATH_FUNCTORS_HPP_ 11 #define LIN_MATH_GEN_UNARY_FUNCTOR(op) \ 13 template <typename T>\ 14 using expression = decltype(std::op(std::declval<T &>()));\ 15 constexpr op() = default;\ 16 template <typename T>\ 17 inline constexpr auto operator()(T const &t) const { return std::op(t); }\ 20 #define LIN_MATH_GEN_BINARY_FUNCTOR(op) \ 22 template <typename T, typename U>\ 23 using expression = decltype(std::op(std::declval<T &>(), std::declval<U &>()));\ 24 constexpr op() = default;\ 25 template <typename T, typename U>\ 26 inline constexpr auto operator()(T const &t, U const &u) const { return std::op(t, u); }\ 28 template <typename T>\ 30 template <typename U>\ 31 using expression = typename op::template expression<T, U>;\ 33 constexpr op##_st() = default;\ 34 constexpr op##_st(T const &t) : t(t) { }\ 35 template <typename U>\ 36 inline constexpr auto operator()(U const &u) const { return std::op(t, u); }\ 38 template <typename T>\ 40 template <typename U>\ 41 using expression = typename op::template expression<U, T>;\ 43 constexpr op##_ts() = default;\ 44 constexpr op##_ts(T const &t) : t(t) { }\ 45 template <typename U>\ 46 inline constexpr auto operator()(U const &u) const { return std::op(u, t); }\ 53 LIN_MATH_GEN_UNARY_FUNCTOR(sin);
54 LIN_MATH_GEN_UNARY_FUNCTOR(cos);
55 LIN_MATH_GEN_UNARY_FUNCTOR(tan);
56 LIN_MATH_GEN_UNARY_FUNCTOR(asin);
57 LIN_MATH_GEN_UNARY_FUNCTOR(acos);
58 LIN_MATH_GEN_UNARY_FUNCTOR(atan);
59 LIN_MATH_GEN_BINARY_FUNCTOR(atan2);
62 LIN_MATH_GEN_UNARY_FUNCTOR(isfinite);
63 LIN_MATH_GEN_UNARY_FUNCTOR(isinf);
64 LIN_MATH_GEN_UNARY_FUNCTOR(isnan);
65 LIN_MATH_GEN_UNARY_FUNCTOR(isnormal);
68 LIN_MATH_GEN_UNARY_FUNCTOR(exp);
69 LIN_MATH_GEN_UNARY_FUNCTOR(log);
70 LIN_MATH_GEN_UNARY_FUNCTOR(log10);
71 LIN_MATH_GEN_UNARY_FUNCTOR(log2);
74 LIN_MATH_GEN_UNARY_FUNCTOR(sqrt);
75 LIN_MATH_GEN_UNARY_FUNCTOR(cbrt);
76 LIN_MATH_GEN_BINARY_FUNCTOR(pow);
79 LIN_MATH_GEN_UNARY_FUNCTOR(abs);
Definition: config.hpp:27