Currently I have a monstrosity like :
StringArray alphas{ “a”,“b”,“c”,“d”,“e”,“f”,“g”,“h”,“i”,“j”,“k”,“l”,“m”,“n” };
…
thing->parameter.setValue(String(alphas[i]));
(Where “parameter” is a Value.)
I wonder if there’s any other way to do this? (Basically in this situation I need to map integers starting from 0 to alphabet characters that are used to initialize a Juce Value as a String.)