| 59 | // Check 'v' is in closed range [low; high]. |
| 60 | template<typename T> |
| 61 | inline bool IsInRange(const T &v, const T &low, const T &high) { |
| 62 | return !IsOutRange(v, low, high); |
| 63 | } |
| 64 | |
| 65 | // Wrapper for uoffset_t to allow safe template specialization. |
| 66 | // Value is allowed to be 0 to indicate a null object (see e.g. AddOffset). |
nothing calls this directly
no test coverage detected