MCPcopy Create free account
hub / github.com/audacity/audacity / append

Function append

libraries/lib-cloud-audiocom/OAuthService.cpp:96–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94
95template<typename Elem, typename First, typename ...Others>
96void append(std::basic_string<Elem>& dest, First&& first, Others&& ...others)
97{
98 dest.append(first);
99 if constexpr (sizeof...(others) != 0)
100 append(dest, std::forward<Others>(others)...);
101}
102
103template<typename First, typename ...Others>
104auto concat(First&& first, Others&& ...others)

Callers 9

concatFunction · 0.85
make_winappFunction · 0.85
make_winappFunction · 0.85
make_winappFunction · 0.85
make_winappFunction · 0.85
make_winappFunction · 0.85
make_winappFunction · 0.85
Alg_trackMethod · 0.85
serializeMethod · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected