3#ifndef pRC_CORE_BASIC_FUNCTIONS_IS_ZERO_H
4#define pRC_CORE_BASIC_FUNCTIONS_IS_ZERO_H
10 template<
class T, If<IsIntegral<T>> = 0>
11 static inline constexpr auto isZero(
T const a)
16 template<
class T, T V, If<IsIntegral<T>> = 0>
Definition cholesky.hpp:18
static constexpr auto isZero(T const a)
Definition is_zero.hpp:11
std::integral_constant< T, V > Constant
Definition type_traits.hpp:34
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13