Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/andreasfertig/cppinsights
/ A
Class
A
docs/examples/recursive-template.cpp:5–8 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
3
4
template<int n>
5
struct A
6
{
7
static const auto value = A<n - 1>::value + n;
8
};
9
10
template<>
11
struct A<1>
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected