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

Function IsInRange

3rdparty/flatbuffers/flatbuffers/base.h:491–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489// Check 'v' is in closed range [low; high].
490template<typename T>
491inline 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_

Callers

nothing calls this directly

Calls 1

IsOutRangeFunction · 0.85

Tested by

no test coverage detected