MCPcopy Create free account
hub / github.com/Neargye/nameof / SomeMethod4

Function SomeMethod4

example/example.cpp:47–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46template <typename T, typename U>
47std::string SomeMethod4(U value) {
48 auto function_name = NAMEOF(SomeMethod4<T, U>).str()
49 .append("<")
50 .append(NAMEOF_TYPE(T))
51 .append(", ")
52 .append(NAMEOF_TYPE(U))
53 .append(">(")
54 .append(NAMEOF_TYPE(U))
55 .append(" ")
56 .append(NAMEOF(value).data())
57 .append(")");
58
59 return function_name;
60}
61
62template <typename T>
63class SomeClass {

Callers

nothing calls this directly

Calls 2

strMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected