| 239 | |
| 240 | template <typename T> |
| 241 | cs_impl::operators::result cs_impl::operators::handler<T>::mul(void *lhs, void *rhs) |
| 242 | { |
| 243 | any result = cs::operators::mul(*static_cast<const T *>(lhs), *static_cast<const any *>(rhs)); |
| 244 | any::proxy *pxy = nullptr; |
| 245 | std::swap(result.mDat, pxy); |
| 246 | return result::from_ptr(pxy); |
| 247 | } |
| 248 | |
| 249 | template <typename T> |
| 250 | cs_impl::operators::result cs_impl::operators::handler<T>::div(void *lhs, void *rhs) |