| 62 | |
| 63 | template <typename T> |
| 64 | static inline var pow(const T &lhs, const var &rhs) |
| 65 | { |
| 66 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support ^ operator."); |
| 67 | } |
| 68 | |
| 69 | template <typename T> |
| 70 | static inline var minus(const T &val) |
no test coverage detected