MCPcopy Create free account
hub / github.com/FastLED/FastLED / make_tuple

Function make_tuple

src/fl/stl/tuple.h:103–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101// make_tuple
102template<typename... Ts>
103tuple<typename fl::decay<Ts>::type...>
104make_tuple(Ts&&... args) FL_NOEXCEPT {
105 return tuple<typename fl::decay<Ts>::type...>(fl::forward<Ts>(args)...);
106}
107
108// C++11 requires out-of-class definitions for static constexpr members that are ODR-used
109// tuple_size<tuple<Ts...>>::value is inherited from integral_constant<size_t, sizeof...(Ts)>

Callers 15

invokeWithReturnMethod · 0.85
invokeMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85
convertMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected