trait LongStream extends BaseStream[Long, LongStream]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LongStream
- BaseStream
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def allMatch(pred: LongPredicate): Boolean
- abstract def anyMatch(pred: LongPredicate): Boolean
- abstract def asDoubleStream(): DoubleStream
- abstract def average(): OptionalDouble
- abstract def boxed(): Stream[Long]
- abstract def close(): Unit
- Definition Classes
- BaseStream → AutoCloseable
- abstract def collect[R](supplier: Supplier[R], accumulator: ObjLongConsumer[R], combiner: BiConsumer[R, R]): R
- abstract def count(): Long
- abstract def distinct(): LongStream
- abstract def filter(pred: LongPredicate): LongStream
- abstract def findAny(): OptionalLong
- abstract def findFirst(): OptionalLong
- abstract def flatMap(mapper: LongFunction[_ <: LongStream]): LongStream
- abstract def forEach(action: LongConsumer): Unit
- abstract def forEachOrdered(action: LongConsumer): Unit
- abstract def isParallel(): Boolean
- Definition Classes
- BaseStream
- abstract def iterator(): Iterator[Long]
- Definition Classes
- BaseStream
- abstract def limit(maxSize: Long): LongStream
- abstract def map(mapper: LongUnaryOperator): LongStream
- abstract def mapToDouble(mapper: LongToDoubleFunction): DoubleStream
- abstract def mapToInt(mapper: LongToIntFunction): IntStream
- abstract def mapToObj[U](mapper: LongFunction[_ <: U]): Stream[U]
- abstract def max(): OptionalLong
- abstract def min(): OptionalLong
- abstract def noneMatch(pred: LongPredicate): Boolean
- abstract def onClose(closeHandler: Runnable): LongStream
- Definition Classes
- BaseStream
- abstract def parallel(): LongStream
- Definition Classes
- BaseStream
- abstract def peek(action: LongConsumer): LongStream
- abstract def reduce(op: LongBinaryOperator): OptionalLong
- abstract def reduce(identity: Long, op: LongBinaryOperator): Long
- abstract def sequential(): LongStream
- Definition Classes
- BaseStream
- abstract def skip(n: Long): LongStream
- abstract def sorted(): LongStream
- abstract def spliterator(): Spliterator[Long]
- Definition Classes
- BaseStream
- abstract def sum(): Long
- abstract def summaryStatistics(): LongSummaryStatistics
- abstract def toArray(): Array[Long]
- abstract def unordered(): LongStream
- Definition Classes
- BaseStream
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def dropWhile(pred: LongPredicate): LongStream
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapMulti(mapper: LongMapMultiConsumer): LongStream
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def takeWhile(pred: LongPredicate): LongStream
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()