c

com.avsystem.commons.jiop

ScalaJLongStream

final class ScalaJLongStream extends AnyVal

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

Instance Constructors

  1. new ScalaJLongStream(jStream: commons.JLongStream)

Value Members

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