Packages

trait IntStream extends BaseStream[Integer, IntStream]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IntStream
  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: IntPredicate): Boolean
  2. abstract def anyMatch(pred: IntPredicate): Boolean
  3. abstract def asDoubleStream(): DoubleStream
  4. abstract def asLongStream(): LongStream
  5. abstract def average(): OptionalDouble
  6. abstract def boxed(): Stream[Integer]
  7. abstract def close(): Unit
    Definition Classes
    BaseStreamAutoCloseable
  8. abstract def collect[R](supplier: Supplier[R], accumulator: ObjIntConsumer[R], combiner: BiConsumer[R, R]): R
  9. abstract def count(): Long
  10. abstract def distinct(): IntStream
  11. abstract def filter(pred: IntPredicate): IntStream
  12. abstract def findAny(): OptionalInt
  13. abstract def findFirst(): OptionalInt
  14. abstract def flatMap(mapper: IntFunction[_ <: IntStream]): IntStream
  15. abstract def forEach(action: IntConsumer): Unit
  16. abstract def forEachOrdered(action: IntConsumer): Unit
  17. abstract def isParallel(): Boolean
    Definition Classes
    BaseStream
  18. abstract def iterator(): Iterator[_ <: Integer]
    Definition Classes
    BaseStream
  19. abstract def limit(maxSize: Long): IntStream
  20. abstract def map(mapper: IntUnaryOperator): IntStream
  21. abstract def mapToDouble(mapper: IntToDoubleFunction): DoubleStream
  22. abstract def mapToLong(mapper: IntToLongFunction): LongStream
  23. abstract def mapToObj[U](mapper: IntFunction[_ <: U]): Stream[U]
  24. abstract def max(): OptionalInt
  25. abstract def min(): OptionalInt
  26. abstract def noneMatch(pred: IntPredicate): Boolean
  27. abstract def onClose(closeHandler: Runnable): IntStream
    Definition Classes
    BaseStream
  28. abstract def parallel(): IntStream
    Definition Classes
    BaseStream
  29. abstract def peek(action: IntConsumer): IntStream
  30. abstract def reduce(op: IntBinaryOperator): OptionalInt
  31. abstract def reduce(identity: Int, op: IntBinaryOperator): Int
  32. abstract def sequential(): IntStream
    Definition Classes
    BaseStream
  33. abstract def skip(n: Long): IntStream
  34. abstract def sorted(): IntStream
  35. abstract def spliterator(): Spliterator[_ <: Integer]
    Definition Classes
    BaseStream
  36. abstract def sum(): Int
  37. abstract def summaryStatistics(): IntSummaryStatistics
  38. abstract def toArray(): Array[Int]
  39. abstract def unordered(): IntStream
    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: IntPredicate): IntStream
  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: IntMapMultiConsumer): IntStream
  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: IntPredicate): IntStream
  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[Integer, IntStream]

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped