Class IntSets
- java.lang.Object
-
- org.eclipse.collections.impl.factory.primitive.IntSets
-
public final class IntSets extends java.lang.Object
IntSets is a static utility for creatingImmutableIntSetFactory
andMutableIntSetFactory
. This file was automatically generated from template file primitiveSets.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntSetFactory
immutable
static MutableIntSetFactory
mutable
-
Constructor Summary
Constructors Modifier Constructor Description private
IntSets()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <A,B>
LazyIterable<IntIntPair>cartesianProduct(IntSet set1, IntSet set2)
static <A,B,C>
LazyIterable<C>cartesianProduct(IntSet set1, IntSet set2, IntIntToObjectFunction<C> function)
-
-
-
Field Detail
-
immutable
public static final ImmutableIntSetFactory immutable
-
mutable
public static final MutableIntSetFactory mutable
-
-
Method Detail
-
cartesianProduct
public static <A,B> LazyIterable<IntIntPair> cartesianProduct(IntSet set1, IntSet set2)
- Since:
- 9.0
-
cartesianProduct
public static <A,B,C> LazyIterable<C> cartesianProduct(IntSet set1, IntSet set2, IntIntToObjectFunction<C> function)
- Since:
- 9.0
-
-