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

Function min

tests/StaticAndTemplatesTest.cpp:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected