List of utility methods to do List Last Item
T | getLast(List get Last if (items == null || items.size() == 0) return null; return items.get(items.size() - 1); |
T | getLast(List Return the last item of l if it isn't empty, otherwise null .
return getNoExn(l, l.size() - 1);
|
T | getLast(List get Last if (isEmpty(list)) { return null; return list.get(list.size() - 1); |
T | getLast(List Returns the last element in a list, or null if there is none. return list == null || list.isEmpty() ? null : list.get(list.size() - 1);
|
T | getLast(List get Last return list.get(list.size() - 1);
|
T | getLast(List Return the last item of the List . if (list == null || list.isEmpty()) { return null; return list.get(list.size() - 1); |
T | getLast(List get Last if (isEmpty(list)) { return null; return list.get(list.size() - 1); |
T | getLast(List get Last return list.isEmpty() ? null : list.get(list.size() - 1);
|
T | getLast(List get Last return list.get(lastIndex(list.size()));
|
T | getLast(List get Last if (isEmpty(list)) { return null; return list.get(list.size() - 1); |