Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Apress/beginning-cpp20
/ square
Function
square
Examples/NoModules/Chapter 11/Ex11_06/Ex11_06.cpp:9–9 ·
view source on GitHub ↗
the square root of 2
Source
from the content-addressed store, hash-verified
7
{
8
const double sqrt2{ 1.414213562373095 }; // the square root of 2
9
auto square(const auto& x) { return x * x; }
10
auto pow4(const auto& x) { return square(square(x)); }
11
}
12
Callers
2
pow4
Function · 0.70
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected