| 358 | |
| 359 | template <typename T> |
| 360 | cs_impl::operators::result cs_impl::operators::handler<T>::access(void *lhs, void *rhs) |
| 361 | { |
| 362 | any result = cs::operators::access(*static_cast<T *>(lhs), *static_cast<const cs::string *>(rhs)); |
| 363 | any::proxy *pxy = nullptr; |
| 364 | std::swap(result.mDat, pxy); |
| 365 | return result::from_ptr(pxy); |
| 366 | } |
| 367 | |
| 368 | template <typename T> |
| 369 | cs_impl::operators::result cs_impl::operators::handler<T>::caccess(void *lhs, void *rhs) |