MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / min

Function min

tests/TemplateHandlerTest.cpp:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4template<typename T>
5constexpr T min(const T& a, const T& b)
6{
7 return (a < b) ? a : b;
8}
9
10template<typename T>
11static T max(const T& a, const T& b)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected