Package it.unimi.dsi.fastutil.bytes
Interface ByteBidirectionalIterator
- All Superinterfaces:
BidirectionalIterator<Byte>
,ByteIterator
,Iterator<Byte>
,ObjectBidirectionalIterator<Byte>
,ObjectIterator<Byte>
- All Known Subinterfaces:
ByteBigListIterator
,ByteListIterator
- All Known Implementing Classes:
AbstractByteBidirectionalIterator
,AbstractByteBigListIterator
,AbstractByteListIterator
,ByteBigListIterators.BigListIteratorListIterator
,ByteBigListIterators.EmptyBigListIterator
,ByteBigListIterators.UnmodifiableBigListIterator
,ByteIterators.EmptyIterator
,ByteIterators.UnmodifiableBidirectionalIterator
,ByteIterators.UnmodifiableListIterator
public interface ByteBidirectionalIterator extends ByteIterator, ObjectBidirectionalIterator<Byte>
A type-specific bidirectional iterator; provides an additional method to
avoid (un)boxing, and the possibility to skip elements backwards.
- See Also:
BidirectionalIterator
-
Method Summary
Modifier and Type Method Description default int
back(int n)
Moves back for the given number of elements.default Byte
previous()
Deprecated.Please use the corresponding type-specific method instead.byte
previousByte()
Returns the previous element as a primitive type.default int
skip(int n)
Skips the given number of elements.Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPrevious
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterator
forEachRemaining, forEachRemaining, next, nextByte
-
Method Details
-
previousByte
byte previousByte()Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previous
in interfaceBidirectionalIterator<Byte>
- Returns:
- the previous element from the collection.
- See Also:
ListIterator.previous()
-
back
default int back(int n)Moves back for the given number of elements.The effect of this call is exactly the same as that of calling
previous()
forn
times (possibly stopping ifBidirectionalIterator.hasPrevious()
becomes false).- Specified by:
back
in interfaceObjectBidirectionalIterator<Byte>
- Parameters:
n
- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
previous()
-
skip
default int skip(int n)Skips the given number of elements.The effect of this call is exactly the same as that of calling
ByteIterator.next()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Specified by:
skip
in interfaceByteIterator
- Specified by:
skip
in interfaceObjectBidirectionalIterator<Byte>
- Specified by:
skip
in interfaceObjectIterator<Byte>
- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-