MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / IsOutRange

Function IsOutRange

3rdparty/flatbuffers/flatbuffers/base.h:485–487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483// comparison is always true due to limited range of data type.
484template<typename T>
485inline bool IsOutRange(const T &v, const T &low, const T &high) {
486 return (v < low) || (high < v);
487}
488
489// Check 'v' is in closed range [low; high].
490template<typename T>

Callers 1

IsInRangeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected