MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / Add

Function Add

01.11-compoundRequirement2/main.cpp:33–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31template<typename... Args>
32requires Addable<Args...>
33auto Add(Args&&... args) noexcept
34{
35 return (... + args);
36}
37
38
39class Rational {

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected