| 257 | |
| 258 | template <typename T> |
| 259 | cs_impl::operators::result cs_impl::operators::handler<T>::mod(void *lhs, void *rhs) |
| 260 | { |
| 261 | any result = cs::operators::mod(*static_cast<const T *>(lhs), *static_cast<const any *>(rhs)); |
| 262 | any::proxy *pxy = nullptr; |
| 263 | std::swap(result.mDat, pxy); |
| 264 | return result::from_ptr(pxy); |
| 265 | } |
| 266 | |
| 267 | template <typename T> |
| 268 | cs_impl::operators::result cs_impl::operators::handler<T>::pow(void *lhs, void *rhs) |