| 398 | */ |
| 399 | template<class View> |
| 400 | forceinline bool |
| 401 | operator ==(const CachedView<View>& x, const CachedView<View>& y) { |
| 402 | return (x.base() == y.base()) && (x.offset() == y.offset()); |
| 403 | } |
| 404 | template<class View> |
| 405 | forceinline bool |
| 406 | operator !=(const CachedView<View>& x, const CachedView<View>& y) { |