Source

ox.channels.Source
See theSource companion object
trait Source[+T] extends SourceOps[T]

Attributes

Companion:
object
Graph
Supertypes
trait SourceOps[T]
class Object
trait Matchable
class Any
Known subtypes
class Channel[T]

Members list

Concise view

Value members

Abstract methods

def receive(): ClosedOr[T]

Inherited methods

def foreach(f: T => Unit): Unit

Attributes

Inherited from:
SourceOps
def map[U](f: T => U)(using Ox): Source[U]

Attributes

Inherited from:
SourceOps
def map[U](capacity: Int)(f: T => U)(using Ox): Source[U]

Attributes

Inherited from:
SourceOps
def merge[U >: T](capacity: Int)(other: Source[U])(using Ox): Source[U]

Attributes

Inherited from:
SourceOps
def merge[U >: T](other: Source[U])(using Ox): Source[U]

Attributes

Inherited from:
SourceOps
def toList: List[T]

Attributes

Inherited from:
SourceOps
def transform[U](f: Iterator[T] => Iterator[U])(using Ox): Source[U]

Attributes

Inherited from:
SourceOps
def zip[U](capacity: Int)(other: Source[U])(using Ox): Source[(T, U)]

Attributes

Inherited from:
SourceOps
def zip[U](other: Source[U])(using Ox): Source[(T, U)]

Attributes

Inherited from:
SourceOps