| 266 | |
| 267 | template <typename T> |
| 268 | cs_impl::operators::result cs_impl::operators::handler<T>::pow(void *lhs, void *rhs) |
| 269 | { |
| 270 | any result = cs::operators::pow(*static_cast<const T *>(lhs), *static_cast<const any *>(rhs)); |
| 271 | any::proxy *pxy = nullptr; |
| 272 | std::swap(result.mDat, pxy); |
| 273 | return result::from_ptr(pxy); |
| 274 | } |
| 275 | |
| 276 | template <typename T> |
| 277 | cs_impl::operators::result cs_impl::operators::handler<T>::minus(void *lhs, void *rhs) |