MCPcopy Create free account
hub / github.com/0voice/cpp_new_features / add

Function add

cpp_17/004_tuple_apply.cpp:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <utility>
4
5int add(int first, int second) { return first + second; }
6
7template<typename T>
8T add_generic(T first, T second) { return first + second; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected