Android Utililty Methods Iterable Element Get

List of utility methods to do Iterable Element Get

Description

The list of methods to do Iterable Element Get are organized into topic(s).

Method

Tget(Iterable collection, int idx)
get
Iterator<T> it = collection.iterator();
T next = null;
do {
    if (it.hasNext())
        next = it.next();
    else
        return null;
    idx--;
...