Home | History | Annotate | Download | only in mpreal

Lines Matching refs:Lhs

576 	operator+(const mpreal& lhs, const Rhs& rhs){ return mpreal(lhs) += rhs;	}

578 template <typename Lhs>
579 inline const typename internal::result_type<Lhs>::type
580 operator+(const Lhs& lhs, const mpreal& rhs){ return mpreal(rhs) += lhs; }
585 operator-(const mpreal& lhs, const Rhs& rhs){ return mpreal(lhs) -= rhs; }
587 template <typename Lhs>
588 inline const typename internal::result_type<Lhs>::type
589 operator-(const Lhs& lhs, const mpreal& rhs){ return mpreal(lhs) -= rhs; }
594 operator*(const mpreal& lhs, const Rhs& rhs){ return mpreal(lhs) *= rhs; }
596 template <typename Lhs>
597 inline const typename internal::result_type<Lhs>::type
598 operator*(const Lhs& lhs, const mpreal& rhs){ return mpreal(rhs) *= lhs; }
603 operator/(const mpreal& lhs, const Rhs& rhs){ return mpreal(lhs) /= rhs; }
605 template <typename Lhs>
606 inline const typename internal::result_type<Lhs>::type
607 operator/(const Lhs& lhs, const mpreal& rhs){ return mpreal(lhs) /= rhs; }