| 20 | PtrRange ( char * F, size_t size ) : from(F), to(F+size) {} |
| 21 | void clear() { from = to = nullptr; } |
| 22 | __forceinline bool empty() const { return from==to; } |
| 23 | __forceinline bool contains ( const PtrRange & r ) { return !empty() && !r.empty() && from<=r.from && to>=r.to; } |
| 24 | }; |
| 25 |
no outgoing calls
no test coverage detected