Interface ImmutableLongSet
-
- All Superinterfaces:
ImmutableLongCollection
,LongIterable
,LongSet
,PrimitiveIterable
- All Known Implementing Classes:
AbstractImmutableLongSet
,ImmutableLongEmptySet
,ImmutableLongLongMapKeySet
,ImmutableLongMapKeySet
,ImmutableLongSingletonSet
,LongHashSet.ImmutableLongHashSet
public interface ImmutableLongSet extends ImmutableLongCollection, LongSet
This file was automatically generated from template file immutablePrimitiveSet.stg.- Since:
- 3.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods 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.default ImmutableLongSet
difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableLongSet
intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.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
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 ImmutableLongSet
tap(LongProcedure procedure)
default ImmutableLongSet
union(LongSet set)
-
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, longIterator, 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, freeze, hashCode, isProperSubsetOf, isSubsetOf, toImmutable
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Method Detail
-
select
ImmutableLongSet 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 interfaceImmutableLongCollection
- Specified by:
select
in interfaceLongIterable
- Specified by:
select
in interfaceLongSet
-
reject
ImmutableLongSet 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 interfaceImmutableLongCollection
- Specified by:
reject
in interfaceLongIterable
- Specified by:
reject
in interfaceLongSet
-
tap
default ImmutableLongSet tap(LongProcedure procedure)
- Specified by:
tap
in interfaceImmutableLongCollection
- Specified by:
tap
in interfaceLongIterable
- Specified by:
tap
in interfaceLongSet
- Since:
- 9.0.
-
collect
<V> ImmutableSet<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 interfaceImmutableLongCollection
- Specified by:
collect
in interfaceLongIterable
- Specified by:
collect
in interfaceLongSet
-
union
default ImmutableLongSet union(LongSet set)
-
intersect
default ImmutableLongSet 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 ImmutableLongSet 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 ImmutableLongSet 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.
-
newWith
ImmutableLongSet newWith(long element)
- Specified by:
newWith
in interfaceImmutableLongCollection
-
newWithout
ImmutableLongSet newWithout(long element)
- Specified by:
newWithout
in interfaceImmutableLongCollection
-
newWithAll
ImmutableLongSet newWithAll(LongIterable elements)
- Specified by:
newWithAll
in interfaceImmutableLongCollection
-
newWithoutAll
ImmutableLongSet newWithoutAll(LongIterable elements)
- Specified by:
newWithoutAll
in interfaceImmutableLongCollection
-
-