Package it.unimi.dsi.fastutil.shorts
Interface ShortBidirectionalIterable
-
- All Superinterfaces:
Iterable<Short>
,ShortIterable
- All Known Subinterfaces:
ShortSortedSet
- All Known Implementing Classes:
AbstractShortSortedSet
,ShortAVLTreeSet
,ShortLinkedOpenCustomHashSet
,ShortLinkedOpenHashSet
,ShortRBTreeSet
,ShortSortedSets.EmptySet
,ShortSortedSets.Singleton
,ShortSortedSets.SynchronizedSortedSet
,ShortSortedSets.UnmodifiableSortedSet
public interface ShortBidirectionalIterable extends ShortIterable
A type-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ShortBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface java.lang.Iterable
spliterator
-
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterable
forEach, forEach
-
-
-
-
Method Detail
-
iterator
ShortBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceIterable<Short>
- Specified by:
iterator
in interfaceShortIterable
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-