Empty

cps.stream.AsyncList$.Empty
case class Empty[F[_]]()(implicit evidence$4: CpsConcurrentMonad[F]) extends AsyncList[F, Nothing]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait AsyncList[F, Nothing]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def append[S](x: => AsyncList[F, S]): AsyncList[F, S]
def filter(p: Nothing => Boolean): Empty[F]
def filterAsync(p: Nothing => F[Boolean]): Empty[F]
def find(p: Nothing => Boolean): F[Option[Nothing]]
def findAsync(p: Nothing => F[Boolean]): F[Option[Nothing]]
def flatMap[S](f: Nothing => AsyncList[F, S]): AsyncList[F, S]
def flatMapAsync[S](f: Nothing => F[AsyncList[F, S]]): AsyncList[F, S]
def fold[S](s0: S)(f: (S, Nothing) => S): F[S]
def foldAsync[S](s0: S)(f: (S, Nothing) => F[S]): F[S]
def map[S](f: Nothing => S): AsyncList[F, S]
def mapAsync[S](f: Nothing => F[S]): AsyncList[F, S]
def merge[S](other: AsyncList[F, S]): AsyncList[F, S]
def next: F[Option[(Nothing, AsyncList[F, Nothing])]]
def scanTail[S](s0: S)(f: (S, Nothing) => S): AsyncList[F, S]
def scanTailAsync[S](s0: S)(f: (S, Nothing) => F[S]): AsyncList[F, S]
def takeTo[B <: Growable[Nothing]](buffer: B, n: Int): F[B]

Inherited methods

def appendAsync[S](x: () => F[AsyncList[F, S]]): AsyncList[F, S]

Attributes

Inherited from:
AsyncList
def foreach[U](f: Nothing => U): F[Unit]

Attributes

Inherited from:
AsyncList
def foreachAsync[U](f: Nothing => F[U]): F[Unit]

Attributes

Inherited from:
AsyncList

Attributes

Inherited from:
AsyncList
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def scan[S](s0: S)(f: (S, Nothing) => S): AsyncList[F, S]

Attributes

Inherited from:
AsyncList
def scanAsync[S](s0: S)(f: (S, Nothing) => F[S]): AsyncList[F, S]

Attributes

Inherited from:
AsyncList
def take[CC[_]](n: Int)(using Factory[Nothing, CC[Nothing]]): F[CC[T]]

Attributes

Inherited from:
AsyncList
def takeAll[CC[_]](n: Int)(using Factory[Nothing, CC[Nothing]]): F[CC[T]]

Attributes

Inherited from:
AsyncList
def takeList(n: Int): F[List[T]]

Attributes

Inherited from:
AsyncList
def takeListAll(): F[List[T]]

Attributes

Inherited from:
AsyncList