c

com.avsystem.commons.jiop

ScalaJDoubleStream

final class ScalaJDoubleStream extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalaJDoubleStream
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ScalaJDoubleStream(jStream: commons.JDoubleStream)

Value Members

  1. def allMatch(predicate: (Double) ⇒ Boolean): Boolean
  2. def anyMatch(predicate: (Double) ⇒ Boolean): Boolean
  3. def asJava: commons.JDoubleStream
  4. def average: Option[Double]
  5. def boxed: ScalaJStream[Double]
  6. def close(): Unit
  7. def collect[R](supplier: ⇒ R)(accumulator: (R, Double) ⇒ Any, combiner: (R, R) ⇒ Any): R
  8. def count: Long
  9. def distinct: ScalaJDoubleStream
  10. def filter(predicate: (Double) ⇒ Boolean): ScalaJDoubleStream
  11. def findAny: Option[Double]
  12. def findFirst: Option[Double]
  13. def flatMap(mapper: (Double) ⇒ ScalaJDoubleStream): ScalaJDoubleStream
  14. def forEach(action: (Double) ⇒ Any): Unit
  15. def forEachOrdered(action: (Double) ⇒ Any): Unit
  16. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  17. def isParallel: Boolean
  18. def iterator: Iterator[Double]
  19. def limit(maxSize: Long): ScalaJDoubleStream
  20. def map(mapper: (Double) ⇒ Double): ScalaJDoubleStream
  21. def mapToInt(mapper: (Double) ⇒ Int): ScalaJIntStream
  22. def mapToLong(mapper: (Double) ⇒ Long): ScalaJLongStream
  23. def mapToObj[U](mapper: (Double) ⇒ U): ScalaJStream[U]
  24. def max: Option[Double]
  25. def min: Option[Double]
  26. def noneMatch(predicate: (Double) ⇒ Boolean): Boolean
  27. def onClose(closeHandler: ⇒ Any): ScalaJDoubleStream
  28. def parallel: ScalaJDoubleStream
  29. def peek(action: (Double) ⇒ Any): ScalaJDoubleStream
  30. def reduce(op: (Double, Double) ⇒ Double): Option[Double]
  31. def reduce(identity: Double)(op: (Double, Double) ⇒ Double): Double
  32. def sequential: ScalaJDoubleStream
  33. def skip(n: Long): ScalaJDoubleStream
  34. def sorted: ScalaJDoubleStream
  35. def sum: Double
  36. def summaryStatistics: DoubleSummaryStatistics
  37. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Double, Col[Double]]): Col[Double]
  38. def toArray: Array[Double]
  39. def unordered: ScalaJDoubleStream