MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / container

Class container

tests/DeductionGuideTest.cpp:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6namespace Test {
7// declaration of the template
8template<class T> struct container {
9 container(T t) {}
10 template<class Iter> container(Iter beg, Iter end);
11};
12// additional deduction guide
13template<class Iter>
14container(Iter b, Iter e) -> container<typename std::iterator_traits<Iter>::value_type>;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected