Uses of Interface
org.javimmutable.collections.SplitableIterable
Packages that use SplitableIterable
Package
Description
-
Uses of SplitableIterable in org.javimmutable.collections
Subinterfaces of SplitableIterable in org.javimmutable.collectionsModifier and TypeInterfaceDescriptioninterface
IArray<T>
Immutable sparse array implementation using integers as keys.interface
ICollection<T>
interface
IDeque<T>
Interface for containers that store items in list form with individual items available for get() and assign() using their indexes.interface
IList<T>
Interface for containers that store items in list form with individual items available for get() and assign() using their indexes.interface
IListMap<K,
V> Interface for maps that map keys to lists of values.interface
IMap<K,
V> Interface for immutable data structures that allow storage and retrieval of key/value pairs.interface
IMultiset<T>
Keeps a set of distinct values, as well as the count corresponding to each value.interface
ISet<T>
Interface for immutable sets.interface
ISetMap<K,
V> Interface for maps that map keys to sets of values.interface
IStreamable<T>
Interface for classes that can produce java.util.Streams and are also Iterable.Classes in org.javimmutable.collections that implement SplitableIterable -
Uses of SplitableIterable in org.javimmutable.collections.array
Classes in org.javimmutable.collections.array that implement SplitableIterable -
Uses of SplitableIterable in org.javimmutable.collections.common
Classes in org.javimmutable.collections.common that implement SplitableIterableMethods in org.javimmutable.collections.common that return SplitableIterableModifier and TypeMethodDescriptiondefault SplitableIterable
<IMapEntry<K, V>> CollisionMap.iterable
(CollisionMap.Node node) default SplitableIterable
<T> CollisionSet.iterable
(CollisionSet.Node node) -
Uses of SplitableIterable in org.javimmutable.collections.deque
Classes in org.javimmutable.collections.deque that implement SplitableIterable -
Uses of SplitableIterable in org.javimmutable.collections.hash
Classes in org.javimmutable.collections.hash that implement SplitableIterableModifier and TypeClassDescriptionclass
EmptyHashMap<K,
V> Singleton implementation ofIMap
that contains no elements.class
EmptyHashSet<T>
class
HashMap<T,
K, V> class
HashMultiset<T>
class
HashSet<T>
-
Uses of SplitableIterable in org.javimmutable.collections.inorder
Classes in org.javimmutable.collections.inorder that implement SplitableIterableModifier and TypeClassDescriptionclass
OrderedMap<K,
V> IMap
implementation that allows iteration over members in the order in which they were inserted into the map.class
IMultiset
implementation built on top of an ordered map.class
OrderedSet<T>
ISet
implementation built on top of an ordered set. -
Uses of SplitableIterable in org.javimmutable.collections.iterators
Subinterfaces of SplitableIterable in org.javimmutable.collections.iteratorsModifier and TypeInterfaceDescriptionstatic interface
Interface for collections that can be iterated over by GenericIterator using State objects to track the progress of the iteration.Classes in org.javimmutable.collections.iterators that implement SplitableIterableModifier and TypeClassDescriptionclass
EntryStreamable<K,
V, C extends IStreamable<V>, D extends IStreamable<IMapEntry<K, C>>> class
TransformStreamable<S,
T> Methods in org.javimmutable.collections.iterators that return SplitableIterableModifier and TypeMethodDescriptionstatic <T> SplitableIterable
<T> static <T> SplitableIterable
<T> SingleValueIterator.iterable
(T value) static <T> SplitableIterable
<T> Method parameters in org.javimmutable.collections.iterators with type arguments of type SplitableIterableModifier and TypeMethodDescriptionstatic <T> LazyMultiIterator
<T> LazyMultiIterator.iterator
(Indexed<SplitableIterable<T>> source) static <T> LazyMultiIterator
<T> LazyMultiIterator.iterator
(SplitableIterator<SplitableIterable<T>> source) static <S,
T> LazyMultiIterator <T> LazyMultiIterator.transformed
(Indexed<S> source, java.util.function.Function<S, SplitableIterable<T>> transforminator) Constructs an iterator that visits all of the values reachable from all of the SplitableIterables visited by source.static <S,
T> LazyMultiIterator <T> LazyMultiIterator.transformed
(SplitableIterator<S> source, java.util.function.Function<S, SplitableIterable<T>> transforminator) Constructs an iterator that visits all of the values reachable from all of the SplitableIterables visited by source. -
Uses of SplitableIterable in org.javimmutable.collections.list
Classes in org.javimmutable.collections.list that implement SplitableIterable -
Uses of SplitableIterable in org.javimmutable.collections.listmap
Classes in org.javimmutable.collections.listmap that implement SplitableIterableModifier and TypeClassDescriptionclass
HashListMap<K,
V> IListMap
using a hash map for fast lookup.class
OrderedListMap<K,
V> IListMap
implementation that allows keys to be traversed in the same order as they were inserted into the collection.class
TreeListMap<K,
V> IListMap
implementation that allows keys to be traversed in sorted order using a Comparator of the natural ordering of the keys if they implement Comparable. -
Uses of SplitableIterable in org.javimmutable.collections.setmap
Classes in org.javimmutable.collections.setmap that implement SplitableIterableModifier and TypeClassDescriptionclass
HashSetMap<K,
V> ISetMap
using a hash map for fast lookup.class
OrderedSetMap<K,
V> ISetMap
implementation that allows keys to be traversed in the same order as they were inserted into the collectionclass
TemplateSetMap<K,
V> ISetMap
implementation that uses arbitrary Map and Set templates.class
TreeSetMap<K,
V> ISetMap
implementation that allows keys to be traversed in sorted order using a Comparator of the natural ordering of the keys if they implement Comparable. -
Uses of SplitableIterable in org.javimmutable.collections.tree
Classes in org.javimmutable.collections.tree that implement SplitableIterableModifier and TypeClassDescriptionclass
LeafNode<K,
V> ¬ * A Node containing one value and no children.class
TreeMap<K,
V> class
TreeMultiset<T>
class
TreeSet<T>