javaewah
Interface IntIterator


public interface IntIterator

The IntIterator interface is used to iterate over a stream of integers.

Author:
lemire

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

Method Detail

next

int next()
Return the next integer

Returns:
the integer

hasNext

boolean hasNext()
Is there more?

Returns:
true, if successful


Copyright © 2012. All Rights Reserved.