Package it.unimi.dsi.fastutil.floats
Interface FloatBidirectionalIterable
-
- All Superinterfaces:
FloatIterable
,java.lang.Iterable<java.lang.Float>
- All Known Subinterfaces:
FloatSortedSet
- All Known Implementing Classes:
AbstractFloatSortedSet
,FloatAVLTreeSet
,FloatLinkedOpenCustomHashSet
,FloatLinkedOpenHashSet
,FloatRBTreeSet
,FloatSortedSets.EmptySet
,FloatSortedSets.Singleton
,FloatSortedSets.SynchronizedSortedSet
,FloatSortedSets.UnmodifiableSortedSet
public interface FloatBidirectionalIterable extends FloatIterable
A type-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FloatBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
doubleIterator, doubleSpliterator, forEach, forEach, forEach, spliterator
-
-
-
-
Method Detail
-
iterator
FloatBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceFloatIterable
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Float>
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-