ReadChannel

object ReadChannel
Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def empty[F[_], A](using Gopher[F]): ReadChannel[F, A]
def fromFuture[F[_], A](f: F[A])(using Gopher[F]): ReadChannel[F, A]
def fromIterable[F[_], A](c: IterableOnce[A])(using Gopher[F]): ReadChannel[F, A]
def fromValues[F[_], A](values: A*)(using Gopher[F]): ReadChannel[F, A]
def unfold[S, F[_], A](s: S)(f: S => Option[(A, S)])(using Gopher[F]): ReadChannel[F, A]
def unfoldAsync[S, F[_], A](s: S)(f: S => F[Option[(A, S)]])(using Gopher[F]): ReadChannel[F, A]