MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / larger

Function larger

Examples/Modules/Chapter 10/Ex10_01.cpp:24–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22// Template for functions to return the larger of two values
23template <typename T>
24T larger(T a, T b)
25{
26 return a > b ? a : b;
27}
28

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected