Returns a true value if index is the first in the list.
bool isFirstIndex<V>(Iterable<V> list, int index) { return index == 0; }