Packages

object DoubleAccumulator extends SpecificIterableFactory[Double, DoubleAccumulator] with java.io.Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DoubleAccumulator
  2. Serializable
  3. SpecificIterableFactory
  4. Factory
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class SerializationProxy[A] extends Serializable

Value Members

  1. def adder: ObjDoubleConsumer[DoubleAccumulator]

    A BiConsumer that adds an element to an DoubleAccumulator, suitable for use with java.util.stream.DoubleStream's collect method.

  2. def apply(xs: Double*): DoubleAccumulator
    Definition Classes
    SpecificIterableFactory
  3. def boxedAdder: BiConsumer[DoubleAccumulator, Double]

    A BiConsumer that adds a boxed Double to an DoubleAccumulator, suitable for use with java.util.stream.Stream's collect method.

  4. def empty: DoubleAccumulator
  5. def fill(n: Int)(elem: => Double): DoubleAccumulator
    Definition Classes
    SpecificIterableFactory
  6. def fromSpecific(it: IterableOnce[Double]): DoubleAccumulator

    it

    Source collection

    returns

    A collection of type C containing the same elements as the source collection it.

    Definition Classes
    DoubleAccumulatorFactory
  7. def merger: BiConsumer[DoubleAccumulator, DoubleAccumulator]

    A BiConsumer that merges DoubleAccumulators, suitable for use with java.util.stream.DoubleStream's collect method.

    A BiConsumer that merges DoubleAccumulators, suitable for use with java.util.stream.DoubleStream's collect method. Suitable for Stream[Double] also.

  8. def newBuilder: DoubleAccumulator

    Get a Builder for the collection.

    Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

    Definition Classes
    DoubleAccumulatorSpecificIterableFactoryFactory
  9. implicit def specificIterableFactory: Factory[Double, DoubleAccumulator]
    Definition Classes
    SpecificIterableFactory
  10. def supplier: Supplier[DoubleAccumulator]

    A Supplier of DoubleAccumulators, suitable for use with java.util.stream.DoubleStream's collect method.

    A Supplier of DoubleAccumulators, suitable for use with java.util.stream.DoubleStream's collect method. Suitable for Stream[Double] also.

  11. implicit def toJavaDoubleAccumulator(ia: DoubleAccumulator.type): SpecificIterableFactory[java.lang.Double, DoubleAccumulator]