| 50 | |
| 51 | template <typename T> |
| 52 | static inline var div(const T &lhs, const var &rhs) |
| 53 | { |
| 54 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support / operator."); |
| 55 | } |
| 56 | |
| 57 | template <typename T> |
| 58 | static inline var mod(const T &lhs, const var &rhs) |
no test coverage detected