MCPcopy Create free account
hub / github.com/ArashPartow/exprtk / clamp

Function clamp

exprtk_test.cpp:3260–3263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3258
3259template <typename T>
3260inline T clamp(const T& l, const T& v, const T& u)
3261{
3262 return (v < l) ? l : ((v > u) ? u : v);
3263}
3264
3265template <typename T>
3266bool run_test04()

Callers 1

func14Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected