3#ifndef pRC_CORE_VALUE_FUNCTIONS_ATAN2_H
4#define pRC_CORE_VALUE_FUNCTIONS_ATAN2_H
14 template<
class Y,
class X, If<IsFloat<Y>> = 0, If<IsFloat<X>> = 0>
15 static inline constexpr auto atan2(
Y const &
y,
X const &
x)
17 return Float(std::atan2(
y(),
x()));
20 template<
class Y,
class X, If<IsInteger<Y>> = 0, If<IsFloat<X>> = 0>
21 static inline constexpr auto atan2(
Y const &
y,
X const &
x)
26 template<
class Y,
class X, If<IsFloat<Y>> = 0, If<IsInteger<X>> = 0>
27 static inline constexpr auto atan2(
Y const &
y,
X const &
x)
32 template<
class Y,
class X, If<IsInteger<Y>> = 0, If<IsInteger<X>> = 0>
33 static inline constexpr auto atan2(
Y const &
y,
X const &
x)
Definition cholesky.hpp:18
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto makeConstantSequence()
Definition sequence.hpp:402
static constexpr auto cast(Complex< T > const &a)
Definition cast.hpp:13
static constexpr auto atan2(XA &&a, XB &&b)
Definition atan2.hpp:15