c

com.avsystem.commons.jiop

ScalaJIntStream

final class ScalaJIntStream extends AnyVal

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

Instance Constructors

  1. new ScalaJIntStream(jStream: commons.JIntStream)

Value Members

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