Stream

beam.Stream
See theStream companion class
object Stream

Attributes

Companion
class
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Stream.type

Members list

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def apply(): Stream[Nothing, Any]
def apply[A](a: A): Stream[A, Any]
def apply[A](a: A, as: A*): Stream[A, Any]
def consChunkEff[A, U](aa: Vector[A], s: Computation[Stream[A, U], U]): Stream[A, U]
def consChunkLazy[A, U](aa: Vector[A], s: => Stream[A, U]): Stream[A, U]
def consEff[A, U](a: A, s: Computation[Stream[A, U], U]): Stream[A, U]
def consLazy[A, U](a: A, s: => Stream[A, U]): Stream[A, U]
def delay[A, U](s: Computation[Stream[A, U], U]): Stream[A, U]
def eval[A, U](aa: Computation[A, U]): Stream[A, U]
def from[A](aa: IterableOnce[A]): Stream[A, Any]
def fromChunks[A](aa: IterableOnce[Vector[A]]): Stream[A, Any]
def fromStreams[A, U](aa: IterableOnce[Stream[A, U]]): Stream[A, U]
def fromStreamsEff[A, U](aa: IterableOnce[Computation[Stream[A, U], U]]): Stream[A, U]
def iterate[A](a: A)(f: A => A): Stream[A, Any]
def iterateEff[A, U](a: A)(f: A => Computation[A, U]): Stream[A, U]
def range[A : Numeric](start: A, endExclusive: A, step: A): Stream[A, Any]
def repeat[A](a: A): Stream[A, Any]
def repeatEff[A, U](aa: Computation[A, U]): Stream[A, U]
def singleton[A](a: A): Stream[A, Any]
def singletonEff[A, U](aa: Computation[A, U]): Stream[A, U]
def unfold[A, S](s: S)(f: S => Option[(A, S)]): Stream[A, Any]
def unfoldEff[A, S, U](s: S)(f: S => Computation[Option[(A, S)], U]): Stream[A, U]

Concrete fields

val empty: Stream[Nothing, Any]
val emptyEff: Computation[Stream[Nothing, Any], Any]
val unit: Stream[Unit, Any]