Android Utililty Methods Iterator Size Get

List of utility methods to do Iterator Size Get

Description

The list of methods to do Iterator Size Get are organized into topic(s).

Method

intsize(Iterator iterator)
Count the 'size' of base iterator
int count = 0;
while (iterator.hasNext()) {
    iterator.next();
    count++;
return count;