MCPcopy Create free account
hub / github.com/LabSound/LabSound / Min

Function Min

include/LabSound/extended/Util.h:66–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64// easier to redeclare than to force consuming projects to deal with NOMINMAX on Windows
65template <typename T>
66inline T Min(T a, T b)
67{
68 return (a < b ? a : b);
69}
70
71template <typename T>
72inline T Max(T a, T b)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected