Uses of Interface
org.eclipse.collections.api.map.sorted.SortedMapIterable
Packages that use SortedMapIterable
Package
Description
This package contains interfaces for SortedBag API.
This package contains mutable and immutable sorted map interfaces.
-
Uses of SortedMapIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return SortedMapIterable -
Uses of SortedMapIterable in org.eclipse.collections.api.map.sorted
Subinterfaces of SortedMapIterable in org.eclipse.collections.api.map.sortedModifier and TypeInterfaceDescriptioninterfaceImmutableSortedMap<K,V> An ImmutableSortedMap is different from a JCF SortedMap because it has no mutating methods.interfaceMutableSortedMap<K,V> A MutableSortedMap is similar to a JCF Map but adds additional useful internal iterator methods.Methods in org.eclipse.collections.api.map.sorted that return SortedMapIterableModifier and TypeMethodDescription<R> SortedMapIterable<K,R> SortedMapIterable.collectValues(Function2<? super K, ? super V, ? extends R> function) SortedMapIterable.drop(int count) SortedMapIterable.reject(Predicate2<? super K, ? super V> predicate) SortedMapIterable.select(Predicate2<? super K, ? super V> predicate) SortedMapIterable.take(int count) SortedMapIterable.toReversed()