Package it.unimi.dsi.fastutil.longs
Interface LongBidirectionalIterable
-
- All Superinterfaces:
Iterable<Long>,LongIterable
- All Known Subinterfaces:
LongSortedSet
- All Known Implementing Classes:
AbstractLongSortedSet,LongAVLTreeSet,LongLinkedOpenCustomHashSet,LongLinkedOpenHashSet,LongRBTreeSet,LongSortedSets.EmptySet,LongSortedSets.Singleton,LongSortedSets.SynchronizedSortedSet,LongSortedSets.UnmodifiableSortedSet
public interface LongBidirectionalIterable extends LongIterable
A type-specificIterablethat further strengthens the specification ofIterable.iterator().
-
-
Method Summary
Modifier and Type Method Description LongBidirectionalIteratoriterator()Returns a type-specificBidirectionalIterator.-
Methods inherited from interface java.lang.Iterable
spliterator
-
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach
-
-
-
-
Method Detail
-
iterator
LongBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator.- Specified by:
iteratorin interfaceIterable<Long>- Specified by:
iteratorin interfaceLongIterable- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-