PureOps

final class PureOps[O] extends AnyVal
Provides syntax for pure streams.
class AnyVal
trait Matchable
class Any

Value members

Methods

def apply[F <: ([_$142] =>> Any)]: Stream[F, O]
Alias for covary, to be able to write Stream.empty[X].
def covary[F <: ([_$143] =>> Any)]: Stream[F, O]
Lifts this stream to the specified effect type.
@deprecated("2.0.2", "Use .to(Chunk) instead")
def toChunk: Chunk[O]
Runs this pure stream and returns the emitted elements in a chunk. Note: this method is only available on pure streams.
def toList: List[O]
Runs this pure stream and returns the emitted elements in a list. Note: this method is only available on pure streams.
def toVector: Vector[O]
Runs this pure stream and returns the emitted elements in a vector. Note: this method is only available on pure streams.