Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
3
template<typename T>
4
constexpr T min(const T& a, const T& b)
5
{
6
return (a < b) ? a : b;
7
}
8
9
template<typename T>
10
static T max(const T& a, const T& b)
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected