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[Chunk[V] | Done])(using Tag[Streams[V]]): Unit < (Streams[V] & Fibers)
inline def emitChunk[V](c: Chunk[V])(using inline tag: Tag[Streams[V]]): Unit < Streams[V]
inline def emitChunkAndThen[V, U, S](c: Chunk[V])(inline f: => U < S)(using inline tag: Tag[Streams[V]]): U < (S & Streams[V])
def emitSeq[V](s: Seq[V])(using Tag[Streams[V]]): Unit < Streams[V]
def initChannel[V](ch: Channel[Chunk[V] | Done])(using Tag[Streams[V]]): Stream[Unit, V, Fibers]
def initChunk[V](c: Chunk[V])(using Tag[Streams[V]]): Stream[Unit, V, Any]
def initSeq[V](c: Seq[V])(using Tag[Streams[V]]): Stream[Unit, V, Any]