| 489 | // Check 'v' is in closed range [low; high]. |
| 490 | template<typename T> |
| 491 | inline bool IsInRange(const T &v, const T &low, const T &high) { |
| 492 | return !IsOutRange(v, low, high); |
| 493 | } |
| 494 | |
| 495 | } // namespace flatbuffers |
| 496 | #endif // FLATBUFFERS_BASE_H_ |
nothing calls this directly
no test coverage detected