| 56 | |
| 57 | template <typename T> |
| 58 | static inline var mod(const T &lhs, const var &rhs) |
| 59 | { |
| 60 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support \% operator."); |
| 61 | } |
| 62 | |
| 63 | template <typename T> |
| 64 | static inline var pow(const T &lhs, const var &rhs) |
no test coverage detected