It would be convenient to also have getLast() and getFirst() in the StringArray.
[FR] StringArray::getLast()
lalala
#2
and a swap function also
void swap (int index1, int index2) noexcept
{
std::swap (getReference (index1), getReference (index2));
}
ed95
#3
Hi samuel,
The Array holding the actual strings is public in StringArray so you can call these methods directly on that object.
Ed