Streams

kyo.Streams
See theStreams companion class
object Streams

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Streams.type

Members list

Type members

Classlikes

object internal

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
internal.type

Value members

Concrete methods

def emitChannel[V](ch: Channel[V | Done])(using Tag[Streams[V]]): Unit < (Streams[V] & Fibers)
def emitSeq[V](v: Seq[V])(using Tag[Streams[V]]): Unit < Streams[V]
def emitValue[V](v: V)(using Tag[Streams[V]]): Unit < Streams[V]
def emitValue[V](v: V, tail: V*)(using Tag[Streams[V]]): Unit < Streams[V]
def initChannel[V](ch: Channel[V | Done])(using Tag[Streams[V]]): Stream[Unit, V, Fibers]
def initSeq[V](v: Seq[V])(using Tag[Streams[V]]): Stream[Unit, V, Any]
def initValue[V](v: V)(using Tag[Streams[V]]): Stream[Unit, V, Any]
def initValue[V](v: V, tail: V*)(using Tag[Streams[V]]): Stream[Unit, V, Any]