MCPcopy Create free account
hub / github.com/jerryuhoo/Fire / isParamInArray

Method isParamInArray

Source/Panels/SpectrogramPanel/Multiband.cpp:234–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232}
233
234bool Multiband::isParamInArray(juce::String paramName, const std::vector<juce::String>& paramArray)
235{
236 for (const auto& name : paramArray)
237 {
238 if (paramName == name)
239 {
240 return true;
241 }
242 }
243 return false;
244}
245
246void Multiband::initParameters(int bandindex)
247{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected