Interface MutableDoubleBagFactory
-
public interface MutableDoubleBagFactoryA factory which creates instances of typeMutableDoubleBag. This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableDoubleBagempty()MutableDoubleBagof()Same asempty().MutableDoubleBagof(double... items)Same aswith(double[]).MutableDoubleBagofAll(Iterable<Double> iterable)Same aswithAll(Iterable).MutableDoubleBagofAll(DoubleStream items)MutableDoubleBagofAll(DoubleIterable items)Same aswithAll(DoubleIterable).MutableDoubleBagwith()Same asempty().MutableDoubleBagwith(double... items)MutableDoubleBagwithAll(Iterable<Double> iterable)MutableDoubleBagwithAll(DoubleStream items)MutableDoubleBagwithAll(DoubleIterable items)
-
-
-
Method Detail
-
empty
MutableDoubleBag empty()
-
of
MutableDoubleBag of()
Same asempty().
-
with
MutableDoubleBag with()
Same asempty().
-
of
MutableDoubleBag of(double... items)
Same aswith(double[]).
-
with
MutableDoubleBag with(double... items)
-
ofAll
MutableDoubleBag ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
MutableDoubleBag withAll(DoubleIterable items)
-
ofAll
MutableDoubleBag ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
MutableDoubleBag withAll(Iterable<Double> iterable)
-
ofAll
MutableDoubleBag ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
MutableDoubleBag withAll(DoubleStream items)
- Since:
- 9.0
-
-