MCPcopy Create free account
hub / github.com/Artikash/Textractor / ArrayImpl

Class ArrayImpl

include/common.h:30–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28#endif
29
30template <typename T, typename... Xs> struct ArrayImpl { using Type = std::tuple<T, Xs...>[]; };
31template <typename T> struct ArrayImpl<T> { using Type = T[]; };
32template <typename... Ts> using Array = typename ArrayImpl<Ts...>::Type;
33

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected