3#ifndef pRC_CORE_VALUE_FUNCTIONS_DIV_H
4#define pRC_CORE_VALUE_FUNCTIONS_DIV_H
13 template<IsFloat TA, IsFloat TB>
14 static inline constexpr auto operator/(TA
const &a, TB
const &b)
16 return Float(a() / b());
19 template<IsInteger TA, IsFloat TB>
20 static inline constexpr auto operator/(TA
const &a, TB
const &b)
25 template<IsFloat TA, IsInteger TB>
26 static inline constexpr auto operator/(TA
const &a, TB
const &b)
31 template<IsInteger TA, IsInteger TB>
32 static inline constexpr auto operator/(TA
const &a, TB
const &b)
Definition cholesky.hpp:10
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto cast(T const &a)
Definition cast.hpp:11
static constexpr auto operator/(Sequence< T, As... > const, Sequence< T, Bs... > const)
Definition sequence.hpp:179
Integer(Integer< true, 8 >::Fundamental const) -> Integer< true, 8 >