StringArray daysOfTheWeek =
{
TRANS ("Sunday"),
TRANS ("Monday"),
TRANS ("Tuesday"),
TRANS ("Wednesday"),
TRANS ("Thursday"),
TRANS ("Friday"),
TRANS ("Saturday")
};
I had been planning to add a bunch of variadic constructors and add methods to the arrays for this kind of thing, which should be more versatile than an initializer_list
Presumably this would mean, in terms of StringArray, that you can specify primitive types and various string formats (CharPointer_UTF8, CharPointer_UTF16)?