Package it.unimi.dsi.fastutil.chars
Interface CharBidirectionalIterable
-
- All Superinterfaces:
CharIterable,Iterable<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-specificIterablethat further strengthens the specification ofIterable.iterator().
-
-
Method Summary
Modifier and Type Method Description CharBidirectionalIteratoriterator()Returns a type-specificBidirectionalIterator.-
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEach
-
Methods inherited from interface java.lang.Iterable
spliterator
-
-
-
-
Method Detail
-
iterator
CharBidirectionalIterator iterator()
Returns a type-specificBidirectionalIterator.- Specified by:
iteratorin interfaceCharIterable- Specified by:
iteratorin interfaceIterable<Character>- Returns:
- a type-specific bidirectional iterator.
- See Also:
Iterable.iterator()
-
-