3#ifndef pRC_CORE_VALUE_FUNCTIONS_EQUAL_H
4#define pRC_CORE_VALUE_FUNCTIONS_EQUAL_H
11 template<IsValue TA, IsValue TB>
12 static inline constexpr auto operator==(TA
const &a, TB
const &b)
17 template<IsInteger TA, IsInteger TB>
18 static inline constexpr auto operator==(TA
const &a, TB
const &b)
23 template<IsSignedInteger TA, IsUn
signedInteger TB>
24 static inline constexpr auto operator==(TA
const &a, TB
const &b)
26 return a <
zero() ? false : a() == b();
29 template<IsUn
signedInteger TA, IsSignedInteger TB>
30 static inline constexpr auto operator==(TA
const &a, TB
const &b)
32 return b <
zero() ? false : a() == b();
Definition cholesky.hpp:10
static constexpr auto operator==(JacobiRotation< TA > const &a, JacobiRotation< TB > const &b)
Definition jacobi_rotation.hpp:284
static constexpr auto zero()
Definition zero.hpp:12