use of org.eclipse.collections.api.list.primitive.MutableDoubleList in project eclipse-collections by eclipse.
the class AbstractListTestCase method collectDouble.
@Override
public void collectDouble() {
super.collectDouble();
MutableDoubleList result = this.newWith(1, 2, 3, 4).collectDouble(PrimitiveFunctions.unboxIntegerToDouble());
Assert.assertEquals(DoubleLists.mutable.of(1.0d, 2.0d, 3.0d, 4.0d), result);
}
Aggregations