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-specific
Iterable that further strengthens the specification of Iterable.iterator().-
Method Summary
Modifier and Type Method Description IntBidirectionalIteratoriterator()Returns a type-specificBidirectionalIterator.Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach, forEach, intIterator, intSpliterator, spliterator
-
Method Details
-
iterator
IntBidirectionalIterator iterator()Returns a type-specificBidirectionalIterator.- Specified by:
iteratorin interfaceIntIterable- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Integer>- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-