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