c

com.avsystem.commons.jiop

ScalaJStream

final class ScalaJStream[+A] extends AnyVal

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

Instance Constructors

  1. new ScalaJStream(jStream: commons.JStream[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. def allMatch(predicate: (A) ⇒ Boolean): Boolean
  5. def anyMatch(predicate: (A) ⇒ Boolean): Boolean
  6. def asDoubleStream(implicit ev: <:<[A, Double]): ScalaJDoubleStream
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def asIntStream(implicit ev: <:<[A, Int]): ScalaJIntStream
  9. def asJava[B >: A]: commons.JStream[B]
  10. def asLongStream(implicit ev: <:<[A, Long]): ScalaJLongStream
  11. def close(): Unit
  12. def collect[R](supplier: ⇒ R)(accumulator: (R, A) ⇒ Any, combiner: (R, R) ⇒ Any): R
  13. def collect[R, B](collector: commons.JCollector[_ >: A, B, R]): R
  14. def count: Long
  15. def distinct: ScalaJStream[A]
  16. def filter(predicate: (A) ⇒ Boolean): ScalaJStream[A]
  17. def findAny: Option[A]
  18. def findFirst: Option[A]
  19. def flatMap[R](mapper: (A) ⇒ ScalaJStream[R]): ScalaJStream[R]
  20. def flatMapToDouble(mapper: (A) ⇒ ScalaJDoubleStream): ScalaJDoubleStream
  21. def flatMapToInt(mapper: (A) ⇒ ScalaJIntStream): ScalaJIntStream
  22. def flatMapToLong(mapper: (A) ⇒ ScalaJLongStream): ScalaJLongStream
  23. def forEach(action: (A) ⇒ Any): Unit
  24. def forEachOrdered(action: (A) ⇒ Any): Unit
  25. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def isParallel: Boolean
  28. def iterator: Iterator[A]
  29. def limit(maxSize: Long): ScalaJStream[A]
  30. def map[R](mapper: (A) ⇒ R): ScalaJStream[R]
  31. def mapToDouble(mapper: (A) ⇒ Double): ScalaJDoubleStream
  32. def mapToInt(mapper: (A) ⇒ Int): ScalaJIntStream
  33. def mapToLong(mapper: (A) ⇒ Long): ScalaJLongStream
  34. def max(comparator: (A, A) ⇒ Int): Option[A]
  35. def min(comparator: (A, A) ⇒ Int): Option[A]
  36. def noneMatch(predicate: (A) ⇒ Boolean): Boolean
  37. def onClose(closeHandler: ⇒ Any): ScalaJStream[A]
  38. def parallel: ScalaJStream[A]
  39. def peek(action: (A) ⇒ Any): ScalaJStream[A]
  40. def reduce[U](identity: U)(accumulator: (U, A) ⇒ U, combiner: (U, U) ⇒ U): U
  41. def reduce[B >: A](identity: B)(accumulator: (B, B) ⇒ B): B
  42. def reduce[B >: A](accumulator: (B, B) ⇒ B): Option[B]
  43. def sequential: ScalaJStream[A]
  44. def skip(n: Long): ScalaJStream[A]
  45. def sorted(comparator: (A, A) ⇒ Int): ScalaJStream[A]
  46. def sorted: ScalaJStream[A]
  47. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, A, Col[A]]): Col[A]
  48. def toArray[B >: A <: AnyRef](implicit arg0: commons.ClassTag[B]): Array[B]
  49. def toString(): String
    Definition Classes
    Any
  50. def unordered: ScalaJStream[A]

Inherited from AnyVal

Inherited from Any

Ungrouped