Interface MutableLongSet
-
- All Superinterfaces:
LongIterable
,LongSet
,MutableLongCollection
,PrimitiveIterable
- All Known Implementing Classes:
AbstractMutableLongKeySet
,LongBooleanHashMap.KeySet
,LongByteHashMap.KeySet
,LongCharHashMap.KeySet
,LongDoubleHashMap.KeySet
,LongFloatHashMap.KeySet
,LongHashSet
,LongIntHashMap.KeySet
,LongLongHashMap.KeySet
,LongObjectHashMap.KeySet
,LongShortHashMap.KeySet
,SynchronizedLongSet
,UnmodifiableLongSet
public interface MutableLongSet extends MutableLongCollection, LongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.- Since:
- 3.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableLongSet
asSynchronized()
MutableLongSet
asUnmodifiable()
<V> MutableSet<V>
collect(LongToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default MutableLongSet
difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.LongSet
freeze()
Returns a frozen copy of this set.default MutableLongSet
intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableLongSet
newEmpty()
Creates a new empty mutable version of the same Set type.MutableLongSet
reject(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.MutableLongSet
select(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default MutableLongSet
symmetricDifference(LongSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default MutableLongSet
tap(LongProcedure procedure)
ImmutableLongSet
toImmutable()
Returns an immutable copy of this set.default MutableLongSet
union(LongSet set)
MutableLongSet
with(long element)
MutableLongSet
withAll(LongIterable elements)
MutableLongSet
without(long element)
MutableLongSet
withoutAll(LongIterable elements)
-
Methods inherited from interface org.eclipse.collections.api.LongIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.set.primitive.LongSet
cartesianProduct, equals, hashCode, isProperSubsetOf, isSubsetOf
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableLongCollection
add, addAll, addAll, clear, longIterator, remove, removeAll, removeAll, removeIf, retainAll, retainAll
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Method Detail
-
select
MutableLongSet select(LongPredicate predicate)
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.- Specified by:
select
in interfaceLongIterable
- Specified by:
select
in interfaceLongSet
- Specified by:
select
in interfaceMutableLongCollection
-
reject
MutableLongSet reject(LongPredicate predicate)
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.- Specified by:
reject
in interfaceLongIterable
- Specified by:
reject
in interfaceLongSet
- Specified by:
reject
in interfaceMutableLongCollection
-
tap
default MutableLongSet tap(LongProcedure procedure)
- Specified by:
tap
in interfaceLongIterable
- Specified by:
tap
in interfaceLongSet
- Specified by:
tap
in interfaceMutableLongCollection
- Since:
- 9.0.
-
collect
<V> MutableSet<V> collect(LongToObjectFunction<? extends V> function)
Description copied from interface:LongIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceLongIterable
- Specified by:
collect
in interfaceLongSet
- Specified by:
collect
in interfaceMutableLongCollection
-
with
MutableLongSet with(long element)
- Specified by:
with
in interfaceMutableLongCollection
-
without
MutableLongSet without(long element)
- Specified by:
without
in interfaceMutableLongCollection
-
withAll
MutableLongSet withAll(LongIterable elements)
- Specified by:
withAll
in interfaceMutableLongCollection
-
withoutAll
MutableLongSet withoutAll(LongIterable elements)
- Specified by:
withoutAll
in interfaceMutableLongCollection
-
asUnmodifiable
MutableLongSet asUnmodifiable()
- Specified by:
asUnmodifiable
in interfaceMutableLongCollection
-
asSynchronized
MutableLongSet asSynchronized()
- Specified by:
asSynchronized
in interfaceMutableLongCollection
-
freeze
LongSet freeze()
Returns a frozen copy of this set. A frozen copy is the same thing as an immutable copy without safe-publish guarantees.
-
toImmutable
ImmutableLongSet toImmutable()
Returns an immutable copy of this set.- Specified by:
toImmutable
in interfaceLongSet
- Specified by:
toImmutable
in interfaceMutableLongCollection
-
newEmpty
default MutableLongSet newEmpty()
Creates a new empty mutable version of the same Set type.- Specified by:
newEmpty
in interfaceMutableLongCollection
- Since:
- 9.2.
-
union
default MutableLongSet union(LongSet set)
-
intersect
default MutableLongSet intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
. The intersection of [1, 2, 3] and [2, 3, 4] is the set [2, 3].
-
difference
default MutableLongSet difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
. The difference of [1, 2, 3] and [2, 3, 4] is [1].- Specified by:
difference
in interfaceLongSet
- Since:
- 11.0.
-
symmetricDifference
default MutableLongSet symmetricDifference(LongSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both). For instance, for the sets [1, 2, 3] and [2, 3, 4], the symmetric difference set is [1, 4] . It is the set difference of the union and the intersection.- Specified by:
symmetricDifference
in interfaceLongSet
- Since:
- 11.0.
-
-