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

Function get

src/fl/stl/tuple.h:64–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62// get<I>(tuple)
63template<size_t I, typename Head, typename... Tail>
64typename enable_if<I == 0, Head&>::type
65get(tuple<Head, Tail...>& t) FL_NOEXCEPT {
66 return t.head;
67}
68
69template<size_t I, typename Head, typename... Tail>
70typename enable_if<I != 0, typename tuple_element<I, tuple<Head, Tail...>>::type&>::type

Callers 3

aligned_ptrClass · 0.85
portTableFunction · 0.85
drawMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected