Package it.unimi.dsi.fastutil.chars
Interface CharBidirectionalIterable
-
- All Superinterfaces:
CharIterable
,java.lang.Iterable<java.lang.Character>
- All Known Subinterfaces:
CharSortedSet
- All Known Implementing Classes:
AbstractCharSortedSet
,CharAVLTreeSet
,CharLinkedOpenCustomHashSet
,CharLinkedOpenHashSet
,CharRBTreeSet
,CharSortedSets.EmptySet
,CharSortedSets.Singleton
,CharSortedSets.SynchronizedSortedSet
,CharSortedSets.UnmodifiableSortedSet
public interface CharBidirectionalIterable extends CharIterable
A type-specificIterable
that further strengthens the specification ofIterable.iterator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharBidirectionalIterator
iterator()
Returns a type-specificBidirectionalIterator
.-
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach, forEach, intIterator, intSpliterator, spliterator
-
-
-
-
Method Detail
-
iterator
CharBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator
.- Specified by:
iterator
in interfaceCharIterable
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Character>
- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-