3#ifndef pRC_CORE_VALUE_FUNCTIONS_SIGN_H
4#define pRC_CORE_VALUE_FUNCTIONS_SIGN_H
25 template<
class T, If<IsValue<T>> = 0,
26 If<IsSatisfied<(
typename T::Signed() == true)>> = 0>
27 static inline constexpr auto sign(
T const &a)
53 template<
class T, If<IsValue<T>> = 0,
54 If<IsSatisfied<(
typename T::Signed() == false)>> = 0>
55 static inline constexpr auto sign(
T const &a)
Definition cholesky.hpp:18
static constexpr auto zero()
Definition zero.hpp:12
static constexpr auto sign(Complex< T > const &a)
Definition sign.hpp:13
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13