| 274 | |
| 275 | template< typename UIntT > |
| 276 | static bool isInRange( UIntT value |
| 277 | , UIntT offset, UIntT count ) |
| 278 | { |
| 279 | return value >= offset && value < offset + count; |
| 280 | } |
| 281 | |
| 282 | template< typename UIntT > |
| 283 | static bool areIntersecting( UIntT lhsOffset, UIntT lhsCount |