How can I start the index in an ArrayList at 1 instead of 0? Is there a way to do that directly in code?
ArrayList
(Note that I am asking for ArrayList
Stuff getValueAtOneBasedIndex(ArrayList list, index) { return list.get(index -1); }