| 874 | } |
| 875 | |
| 876 | static const Boxed_Number product(const Boxed_Number &t_lhs, const Boxed_Number &t_rhs) |
| 877 | { |
| 878 | return Boxed_Number(oper(Operators::Opers::product, t_lhs.bv, t_rhs.bv)); |
| 879 | } |
| 880 | |
| 881 | static const Boxed_Number remainder(const Boxed_Number &t_lhs, const Boxed_Number &t_rhs) |
| 882 | { |
nothing calls this directly
no test coverage detected