3#ifndef pRC_CORE_VALUE_FUNCTIONS_DIV_H
4#define pRC_CORE_VALUE_FUNCTIONS_DIV_H
22 template<
class TA,
class TB, If<IsFloat<TA>> = 0, If<IsFloat<TB>> = 0>
25 return Float(a() / b());
37 template<
class TA,
class TB, If<IsInteger<TA>> = 0, If<IsFloat<TB>> = 0>
38 static inline constexpr auto operator/(
TA const &a,
TB const &b)
52 template<
class TA,
class TB, If<IsFloat<TA>> = 0, If<IsInteger<TB>> = 0>
53 static inline constexpr auto operator/(
TA const &a,
TB const &b)
70 template<
class TA,
class TB, If<IsInteger<TA>> = 0, If<IsInteger<TB>> = 0>
71 static inline constexpr auto operator/(
TA const &a,
TB const &b)
Top-level class storing a floating point number.
Definition float.hpp:35
Definition cholesky.hpp:18
static constexpr auto operator/(Sequence< T, As... > const, Sequence< T, Bs... > const)
Definition sequence.hpp:169
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13
Integer(Integer< true, 8 >::Fundamental const) -> Integer< true, 8 >