| 116 | |
| 117 | template <typename T> |
| 118 | static inline bool ueqcmp(const T &lhs, const T &rhs) |
| 119 | { |
| 120 | throw lang_error("Type " + cs_impl::cxx_demangle(cs_impl::get_name_of_type<T>()) + " does not support <= operator."); |
| 121 | } |
| 122 | |
| 123 | template <typename T> |
| 124 | static inline var &index_ref(T &data, const var &index) |
no test coverage detected