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

Function Projection

libraries/lib-utility/Tuple.h:91–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89
90//! Destructures a std::index_sequence argument
91template<size_t... Indices, typename Tuple> auto Projection(
92 const std::index_sequence<Indices...> &, Tuple &&tuple)
93{
94 return Project<Indices...>(std::forward<Tuple>(tuple));
95}
96
97//! Forwarding of a subsequence of a tuple
98template<size_t... Indices> constexpr auto ForwardProject = [](auto &&tuple)

Callers 2

AllFunction · 0.85
NextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected