Interface MutableDoubleBagFactory
- All Known Implementing Classes:
MutableDoubleBagFactoryImpl
public interface MutableDoubleBagFactory
A factory which creates instances of type
MutableDoubleBag.
This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
Method Summary
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 Details
-
empty
MutableDoubleBag empty() -
of
MutableDoubleBag of()Same asempty(). -
with
MutableDoubleBag with()Same asempty(). -
of
Same aswith(double[]). -
with
-
ofAll
Same aswithAll(DoubleIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-