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-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DoubleBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
doubleIterator, doubleSpliterator, forEach, forEach, forEach, spliterator
-
-
-
-
Method Detail
-
iterator
DoubleBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceDoubleIterable
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Double>
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-