Package it.unimi.dsi.fastutil.bytes
Interface ByteBidirectionalIterable
-
- All Superinterfaces:
ByteIterable
,Iterable<Byte>
- All Known Subinterfaces:
ByteSortedSet
- All Known Implementing Classes:
AbstractByteSortedSet
,ByteAVLTreeSet
,ByteLinkedOpenCustomHashSet
,ByteLinkedOpenHashSet
,ByteRBTreeSet
,ByteSortedSets.EmptySet
,ByteSortedSets.Singleton
,ByteSortedSets.SynchronizedSortedSet
,ByteSortedSets.UnmodifiableSortedSet
public interface ByteBidirectionalIterable extends ByteIterable
A type-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface it.unimi.dsi.fastutil.bytes.ByteIterable
forEach, forEach
-
Methods inherited from interface java.lang.Iterable
spliterator
-
-
-
-
Method Detail
-
iterator
ByteBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceByteIterable
- Specified by:
iterator
in interfaceIterable<Byte>
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-