Package it.unimi.dsi.fastutil.ints
Interface IntBidirectionalIterable
-
- All Superinterfaces:
IntIterable
,java.lang.Iterable<java.lang.Integer>
- All Known Subinterfaces:
IntSortedSet
- All Known Implementing Classes:
AbstractIntSortedSet
,IntAVLTreeSet
,IntLinkedOpenCustomHashSet
,IntLinkedOpenHashSet
,IntRBTreeSet
,IntSortedSets.EmptySet
,IntSortedSets.Singleton
,IntSortedSets.SynchronizedSortedSet
,IntSortedSets.UnmodifiableSortedSet
public interface IntBidirectionalIterable extends IntIterable
A type-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
-
-
-
Method Detail
-
iterator
IntBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceIntIterable
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Integer>
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-