Interface ObjectIterator<K>

    • Method Detail

      • skip

        int skip​(int n)
        Skips the given number of elements.

        The effect of this call is exactly the same as that of calling Iterator.next() for n times (possibly stopping if Iterator.hasNext() becomes false).

        Parameters:
        n - the number of elements to skip.
        Returns:
        the number of elements actually skipped.
        See Also:
        Iterator.next()