Package it.unimi.dsi.fastutil.doubles
Interface DoubleBidirectionalIterable
- All Superinterfaces:
DoubleIterable,java.lang.Iterable<java.lang.Double>
- All Known Subinterfaces:
DoubleSortedSet
- All Known Implementing Classes:
AbstractDoubleSortedSet,DoubleAVLTreeSet,DoubleLinkedOpenCustomHashSet,DoubleLinkedOpenHashSet,DoubleRBTreeSet,DoubleSortedSets.EmptySet,DoubleSortedSets.Singleton,DoubleSortedSets.SynchronizedSortedSet,DoubleSortedSets.UnmodifiableSortedSet
public interface DoubleBidirectionalIterable extends DoubleIterable
A type-specific
Iterable that further strengthens the specification of Iterable.iterator().-
Method Summary
Modifier and Type Method Description DoubleBidirectionalIteratoriterator()Returns a type-specificBidirectionalIterator.Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
doubleIterator, doubleSpliterator, forEach, forEach, forEach, spliterator
-
Method Details
-
iterator
DoubleBidirectionalIterator iterator()Returns a type-specificBidirectionalIterator.- Specified by:
iteratorin interfaceDoubleIterable- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Double>- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-