Interface MutableLongSet
- All Superinterfaces:
LongIterable
,LongSet
,MutableLongCollection
,PrimitiveIterable
- All Known Implementing Classes:
AbstractMutableLongKeySet
,LongHashSet
,SynchronizedLongSet
,UnmodifiableLongSet
public interface MutableLongSet extends MutableLongCollection, LongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
- Since:
- 3.0.
-
Method Summary
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.LongSet
freeze()
Returns a frozen copy of this set.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
tap(LongProcedure procedure)
ImmutableLongSet
toImmutable()
Returns an immutable copy of this 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, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList
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 Details
-
select
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
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
- Specified by:
tap
in interfaceLongIterable
- Specified by:
tap
in interfaceLongSet
- Specified by:
tap
in interfaceMutableLongCollection
- Since:
- 9.0.
-
collect
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
- Specified by:
with
in interfaceMutableLongCollection
-
without
- Specified by:
without
in interfaceMutableLongCollection
-
withAll
- Specified by:
withAll
in interfaceMutableLongCollection
-
withoutAll
- 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
Creates a new empty mutable version of the same Set type.- Specified by:
newEmpty
in interfaceMutableLongCollection
- Since:
- 9.2.
-