| 248 | |
| 249 | template <typename T> |
| 250 | cs_impl::operators::result cs_impl::operators::handler<T>::div(void *lhs, void *rhs) |
| 251 | { |
| 252 | any result = cs::operators::div(*static_cast<const T *>(lhs), *static_cast<const any *>(rhs)); |
| 253 | any::proxy *pxy = nullptr; |
| 254 | std::swap(result.mDat, pxy); |
| 255 | return result::from_ptr(pxy); |
| 256 | } |
| 257 | |
| 258 | template <typename T> |
| 259 | cs_impl::operators::result cs_impl::operators::handler<T>::mod(void *lhs, void *rhs) |