sparsebitmap
Interface IntIterator


public interface IntIterator

The purpose of this class is to provide a simple iterator interface for integers. It is mostly just used for better performance compared to the default Java iterator.

Author:
Daniel Lemire

Method Summary
 boolean hasNext()
          Is there more?
 int next()
          Returns the next integer
 

Method Detail

hasNext

boolean hasNext()
Is there more?

Returns:
true, if there is more, false otherwise

next

int next()
Returns the next integer

Returns:
the integer


Copyright © 2013. All Rights Reserved.