3#ifndef pRC_CORE_VALUE_FUNCTIONS_ACOS_H
4#define pRC_CORE_VALUE_FUNCTIONS_ACOS_H
21 template<
class T, If<IsFloat<T>> = 0>
22 static inline constexpr auto acos(
T const &a)
24 return Float(std::acos(a()));
34 template<
class T, If<IsInteger<T>> = 0>
35 static inline constexpr auto acos(
T const &a)
Top-level class storing a floating point number.
Definition float.hpp:35
Definition cholesky.hpp:18
static constexpr auto acos(Complex< T > const &a)
Definition acos.hpp:13
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13
static constexpr auto cast(Complex< T > const &a)
Definition cast.hpp:13