* View comparison * */
| 315 | * |
| 316 | */ |
| 317 | forceinline bool |
| 318 | operator ==(const OffsetView& x, const OffsetView& y) { |
| 319 | return (x.base() == y.base()) && (x.offset() == y.offset()); |
| 320 | } |
| 321 | forceinline bool |
| 322 | operator !=(const OffsetView& x, const OffsetView& y) { |
| 323 | return !(x == y); |