lin
functors.hpp
Go to the documentation of this file.
1 
5 #ifndef LIN_MATH_FUNCTORS_HPP_
6 #define LIN_MATH_FUNCTORS_HPP_
7 
8 #include <cmath>
9 #include <utility>
10 
11 #define LIN_MATH_GEN_UNARY_FUNCTOR(op) \
12  struct 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); }\
18  }
19 
20 #define LIN_MATH_GEN_BINARY_FUNCTOR(op) \
21  struct 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); }\
27  };\
28  template <typename T>\
29  struct op##_st {\
30  template <typename U>\
31  using expression = typename op::template expression<T, U>;\
32  T const t;\
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); }\
37  };\
38  template <typename T>\
39  struct op##_ts {\
40  template <typename U>\
41  using expression = typename op::template expression<U, T>;\
42  T const 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); }\
47  }
48 
49 namespace lin {
50 namespace internal {
51 
52 /* Standard trigonometric functions. */
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);
60 
61 /* Query charactaristics. */
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);
66 
67 /* Exponential and logarithmic functions. */
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);
72 
73 /* Power functions. */
74 LIN_MATH_GEN_UNARY_FUNCTOR(sqrt);
75 LIN_MATH_GEN_UNARY_FUNCTOR(cbrt);
76 LIN_MATH_GEN_BINARY_FUNCTOR(pow);
77 
78 /* Others. */
79 LIN_MATH_GEN_UNARY_FUNCTOR(abs);
80 
81 } // namespace internal
82 } // namespace lin
83 
84 #endif
Definition: config.hpp:27