Uses of Interface
org.eclipse.collections.api.set.primitive.MutableShortSet
Packages that use MutableShortSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of MutableShortSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableShortSetModifier and TypeMethodDescriptionShortIterable.toSet()Converts the ShortIterable to a new MutableShortSet. -
Uses of MutableShortSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableShortSetModifier and TypeMethodDescriptionMutableShortBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableShortSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableShortSetModifier and TypeMethodDescriptionMutableShortSetFactory.empty()MutableShortSetFactory.of()Same asMutableShortSetFactory.empty().MutableShortSetFactory.of(short... items) Same asMutableShortSetFactory.with(short[]).MutableShortSetFactory.ofAll(ShortIterable items) MutableShortSetFactory.with()Same asMutableShortSetFactory.empty().MutableShortSetFactory.with(short... items) MutableShortSetFactory.withAll(ShortIterable items) default MutableShortSetMutableShortSetFactory.withInitialCapacity(int capacity) Same asMutableShortSetFactory.empty(). but takes in an initial capacity -
Uses of MutableShortSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortSetModifier and TypeMethodDescriptionShortBooleanMap.keySet()Returns a set containing all the keys in this map.ShortByteMap.keySet()Returns a set containing all the keys in this map.ShortCharMap.keySet()Returns a set containing all the keys in this map.ShortDoubleMap.keySet()Returns a set containing all the keys in this map.ShortFloatMap.keySet()Returns a set containing all the keys in this map.ShortIntMap.keySet()Returns a set containing all the keys in this map.ShortLongMap.keySet()Returns a set containing all the keys in this map.ShortObjectMap.keySet()Returns a set containing all the keys in this map.ShortShortMap.keySet()Returns a set containing all the keys in this map. -
Uses of MutableShortSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableShortSetModifier and TypeMethodDescriptiondefault MutableShortSetMutableSet.collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableShortSetModifier and TypeMethodDescriptionMutableShortSet.asSynchronized()MutableShortSet.asUnmodifiable()default MutableShortSetMutableShortSet.difference(ShortSet set) Returns the set of all members ofthisthat are not members ofset.default MutableShortSetReturns the set of all objects that are members of boththisandset.default MutableShortSetMutableShortSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableShortSet.reject(ShortPredicate predicate) MutableShortSet.select(ShortPredicate predicate) default MutableShortSetMutableShortSet.symmetricDifference(ShortSet set) Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableShortSetMutableShortSet.tap(ShortProcedure procedure) default MutableShortSetMutableShortSet.with(short element) MutableShortSet.withAll(ShortIterable elements) MutableShortSet.without(short element) MutableShortSet.withoutAll(ShortIterable elements)