MCPcopy Create free account
hub / github.com/ZL-Audio/ZLEqualizer / make_array_of_impl

Function make_array_of_impl

source/zlp/controller.hpp:44–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42namespace zlp {
43 template <typename T, std::size_t N, typename... Args, std::size_t... I>
44 constexpr std::array<T, N> make_array_of_impl(std::index_sequence<I...>, Args&&... args) {
45 return {{(static_cast<void>(I), T(std::forward<Args>(args)...))...}};
46 }
47
48 template <typename T, std::size_t N, typename... Args>
49 constexpr std::array<T, N> make_array_of(Args&&... args) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected