3#ifndef pRC_CORE_VALUE_FUNCTIONS_MUL_H
4#define pRC_CORE_VALUE_FUNCTIONS_MUL_H
13 template<
class TA,
class TB, If<IsFloat<TA>> = 0, If<IsFloat<TB>> = 0>
16 return Float(a() * b());
19 template<
class TA,
class TB, If<IsInteger<TA>> = 0, If<IsFloat<TB>> = 0>
20 static inline constexpr auto operator*(
TA const &a,
TB const &b)
25 template<
class TA,
class TB, If<IsFloat<TA>> = 0, If<IsInteger<TB>> = 0>
26 static inline constexpr auto operator*(
TA const &a,
TB const &b)
31 template<
class TA,
class TB, If<IsInteger<TA>> = 0, If<IsInteger<TB>> = 0>
32 static inline constexpr auto operator*(
TA const &a,
TB const &b)
Definition cholesky.hpp:18
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto makeConstantSequence()
Definition sequence.hpp:402
static constexpr auto operator*(JacobiRotation< TA > const &a, JacobiRotation< TB > const &b)
Definition jacobi_rotation.hpp:311
Integer(Integer< true, 8 >::Fundamental const) -> Integer< true, 8 >