Interface MutableIntSetFactory
public interface MutableIntSetFactory
A factory which creates instances of type
MutableIntSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()of()Same asempty().of(int... items) Same aswith(int[]).Same aswithAll(Iterable).ofAll(IntIterable items) Same aswithAll(IntIterable).with()Same asempty().with(int... items) withAll(IntIterable items) default MutableIntSetwithInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableIntSet empty() -
of
MutableIntSet of()Same asempty(). -
with
MutableIntSet with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-