Interface ImmutableLongSet
- All Superinterfaces:
ImmutableLongCollection
,LongIterable
,LongSet
,PrimitiveIterable
- All Known Implementing Classes:
AbstractImmutableLongSet
public interface ImmutableLongSet extends ImmutableLongCollection, LongSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
- Since:
- 3.0.
-
Method Summary
Modifier and Type Method Description <V> ImmutableSet<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.ImmutableLongSet
newWith(long element)
ImmutableLongSet
newWithAll(LongIterable elements)
ImmutableLongSet
newWithout(long element)
ImmutableLongSet
newWithoutAll(LongIterable elements)
ImmutableLongSet
reject(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.ImmutableLongSet
select(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default ImmutableLongSet
tap(LongProcedure procedure)
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, longIterator, 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.set.primitive.LongSet
equals, freeze, hashCode, toImmutable
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 interfaceImmutableLongCollection
- Specified by:
select
in interfaceLongIterable
- Specified by:
select
in interfaceLongSet
-
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 interfaceImmutableLongCollection
- Specified by:
reject
in interfaceLongIterable
- Specified by:
reject
in interfaceLongSet
-
tap
- Specified by:
tap
in interfaceImmutableLongCollection
- Specified by:
tap
in interfaceLongIterable
- Specified by:
tap
in interfaceLongSet
- 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 interfaceImmutableLongCollection
- Specified by:
collect
in interfaceLongIterable
- Specified by:
collect
in interfaceLongSet
-
newWith
- Specified by:
newWith
in interfaceImmutableLongCollection
-
newWithout
- Specified by:
newWithout
in interfaceImmutableLongCollection
-
newWithAll
- Specified by:
newWithAll
in interfaceImmutableLongCollection
-
newWithoutAll
- Specified by:
newWithoutAll
in interfaceImmutableLongCollection
-