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

Function make_array_of

source/zlp/controller.hpp:49–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48 template <typename T, std::size_t N, typename... Args>
49 constexpr std::array<T, N> make_array_of(Args&&... args) {
50 return make_array_of_impl<T, N>(std::make_index_sequence<N>{}, std::forward<Args>(args)...);
51 }
52
53 class Controller final : private juce::AsyncUpdater {
54 public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected