public void value(T each)
{
result.push(doubleFunction.doubleValueOf(each));
}
});
return result.toImmutable();
}
public <R extends MutableDoubleCollection> R collectDouble(DoubleFunction<? super T> doubleFunction, R target)
{
return this.delegate.collectDouble(doubleFunction, target);