Packages

trait LongStream extends BaseStream[Long, LongStream]

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

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped