3#ifndef pRC_CORE_VALUE_FUNCTIONS_MUL_H
4#define pRC_CORE_VALUE_FUNCTIONS_MUL_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)
67 template<
class TA,
class TB, If<IsInteger<TA>> = 0, If<IsInteger<TB>> = 0>
68 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*(JacobiRotation< TA > const &a, JacobiRotation< TB > const &b)
Definition jacobi_rotation.hpp:311
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13
Integer(Integer< true, 8 >::Fundamental const) -> Integer< true, 8 >