Uses of Interface
org.organicdesign.fp.collections.UnmodSortedSet
-
Packages that use UnmodSortedSet Package Description org.organicdesign.fp.collections Type-safe versions of immutable collections (mostly from Clojure), plus unmodifiable and immutable collection interfaces that fit these collections into the java.util interfaces. -
-
Uses of UnmodSortedSet in org.organicdesign.fp.collections
Subinterfaces of UnmodSortedSet in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceImSortedSet<E>An immutable sorted set interfaceClasses in org.organicdesign.fp.collections that implement UnmodSortedSet Modifier and Type Class Description classPersistentTreeSet<E>A wrapper that turns a PersistentTreeMap into a set.Methods in org.organicdesign.fp.collections that return UnmodSortedSet Modifier and Type Method Description default @NotNull UnmodSortedSet<Map.Entry<K,V>>UnmodSortedMap. entrySet()Returns a view of the mappings contained in this map.default @NotNull UnmodSortedSet<E>UnmodSortedSet. headSet(E toElement)default @NotNull UnmodSortedSet<K>UnmodSortedMap. keySet()Returns a view of the keys contained in this map.@NotNull UnmodSortedSet<E>UnmodSortedSet. subSet(E fromElement, E toElement)@NotNull UnmodSortedSet<E>UnmodSortedSet. tailSet(E fromElement)
-