3#ifndef pRC_CORE_VALUE_FUNCTIONS_LESS_H
4#define pRC_CORE_VALUE_FUNCTIONS_LESS_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() ? true : 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<(X &&a, T< Void > const)
Definition less.hpp:16
static constexpr auto zero()
Definition zero.hpp:12