trait DoubleStream extends BaseStream[Double, DoubleStream]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DoubleStream
- BaseStream
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def allMatch(pred: DoublePredicate): Boolean
- abstract def anyMatch(pred: DoublePredicate): Boolean
- abstract def average(): OptionalDouble
- abstract def boxed(): Stream[Double]
- abstract def close(): Unit
- Definition Classes
- BaseStream → AutoCloseable
- abstract def collect[R](supplier: Supplier[R], accumulator: ObjDoubleConsumer[R], combiner: BiConsumer[R, R]): R
- abstract def count(): Long
- abstract def distinct(): DoubleStream
- abstract def filter(pred: DoublePredicate): DoubleStream
- abstract def findAny(): OptionalDouble
- abstract def findFirst(): OptionalDouble
- abstract def flatMap(mapper: DoubleFunction[_ <: DoubleStream]): DoubleStream
- abstract def forEach(action: DoubleConsumer): Unit
- abstract def forEachOrdered(action: DoubleConsumer): Unit
- abstract def isParallel(): Boolean
- Definition Classes
- BaseStream
- abstract def iterator(): Iterator[_ <: Double]
- Definition Classes
- BaseStream
- abstract def limit(maxSize: Long): DoubleStream
- abstract def map(mapper: DoubleUnaryOperator): DoubleStream
- abstract def mapToInt(mapper: DoubleToIntFunction): IntStream
- abstract def mapToLong(mapper: DoubleToLongFunction): LongStream
- abstract def mapToObj[U](mapper: DoubleFunction[_ <: U]): Stream[U]
- abstract def max(): OptionalDouble
- abstract def min(): OptionalDouble
- abstract def noneMatch(pred: DoublePredicate): Boolean
- abstract def onClose(closeHandler: Runnable): DoubleStream
- Definition Classes
- BaseStream
- abstract def parallel(): DoubleStream
- Definition Classes
- BaseStream
- abstract def peek(action: DoubleConsumer): DoubleStream
- abstract def reduce(op: DoubleBinaryOperator): OptionalDouble
- abstract def reduce(identity: Double, op: DoubleBinaryOperator): Double
- abstract def sequential(): DoubleStream
- Definition Classes
- BaseStream
- abstract def skip(n: Long): DoubleStream
- abstract def sorted(): DoubleStream
- abstract def spliterator(): Spliterator[_ <: Double]
- Definition Classes
- BaseStream
- abstract def sum(): Double
- abstract def summaryStatistics(): DoubleSummaryStatistics
- abstract def toArray(): Array[Double]
- abstract def unordered(): DoubleStream
- 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: DoublePredicate): DoubleStream
- 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: DoubleMapMultiConsumer): DoubleStream
- 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: DoublePredicate): DoubleStream
- 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()