Packages

trait DoubleStream extends BaseStream[Double, DoubleStream]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DoubleStream
  2. BaseStream
  3. AutoCloseable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def allMatch(pred: DoublePredicate): Boolean
  2. abstract def anyMatch(pred: DoublePredicate): Boolean
  3. abstract def average(): OptionalDouble
  4. abstract def boxed(): Stream[Double]
  5. abstract def close(): Unit
    Definition Classes
    BaseStreamAutoCloseable
  6. abstract def collect[R](supplier: Supplier[R], accumulator: ObjDoubleConsumer[R], combiner: BiConsumer[R, R]): R
  7. abstract def count(): Long
  8. abstract def distinct(): DoubleStream
  9. abstract def filter(pred: DoublePredicate): DoubleStream
  10. abstract def findAny(): OptionalDouble
  11. abstract def findFirst(): OptionalDouble
  12. abstract def flatMap(mapper: DoubleFunction[_ <: DoubleStream]): DoubleStream
  13. abstract def forEach(action: DoubleConsumer): Unit
  14. abstract def forEachOrdered(action: DoubleConsumer): Unit
  15. abstract def isParallel(): Boolean
    Definition Classes
    BaseStream
  16. abstract def iterator(): Iterator[_ <: Double]
    Definition Classes
    BaseStream
  17. abstract def limit(maxSize: Long): DoubleStream
  18. abstract def map(mapper: DoubleUnaryOperator): DoubleStream
  19. abstract def mapToInt(mapper: DoubleToIntFunction): IntStream
  20. abstract def mapToLong(mapper: DoubleToLongFunction): LongStream
  21. abstract def mapToObj[U](mapper: DoubleFunction[_ <: U]): Stream[U]
  22. abstract def max(): OptionalDouble
  23. abstract def min(): OptionalDouble
  24. abstract def noneMatch(pred: DoublePredicate): Boolean
  25. abstract def onClose(closeHandler: Runnable): DoubleStream
    Definition Classes
    BaseStream
  26. abstract def parallel(): DoubleStream
    Definition Classes
    BaseStream
  27. abstract def peek(action: DoubleConsumer): DoubleStream
  28. abstract def reduce(op: DoubleBinaryOperator): OptionalDouble
  29. abstract def reduce(identity: Double, op: DoubleBinaryOperator): Double
  30. abstract def sequential(): DoubleStream
    Definition Classes
    BaseStream
  31. abstract def skip(n: Long): DoubleStream
  32. abstract def sorted(): DoubleStream
  33. abstract def spliterator(): Spliterator[_ <: Double]
    Definition Classes
    BaseStream
  34. abstract def sum(): Double
  35. abstract def summaryStatistics(): DoubleSummaryStatistics
  36. abstract def toArray(): Array[Double]
  37. abstract def unordered(): DoubleStream
    Definition Classes
    BaseStream

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def dropWhile(pred: DoublePredicate): DoubleStream
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def mapMulti(mapper: DoubleMapMultiConsumer): DoubleStream
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def takeWhile(pred: DoublePredicate): DoubleStream
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from BaseStream[Double, DoubleStream]

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped