| 53 | // comparison is always true due to limited range of data type. |
| 54 | template<typename T> |
| 55 | inline bool IsOutRange(const T &v, const T &low, const T &high) { |
| 56 | return (v < low) || (high < v); |
| 57 | } |
| 58 | |
| 59 | // Check 'v' is in closed range [low; high]. |
| 60 | template<typename T> |
no outgoing calls
no test coverage detected