CatsSync

class CatsSync[F[_]](using `x$1`: Sync[F]) extends CpsTryMonad[F]
trait CpsTryMonad[F]
trait CpsMonad[F]
class Object
trait Matchable
class Any
class CatsAsync[F]

Type members

Inherited types

type WF[X] = F[X]
Inherited from
CpsMonad

Value members

Concrete methods

def error[A](e: Throwable): F[A]
def flatMap[A, B](fa: F[A])(f: A => F[B]): F[B]
def flatMapTry[A, B](fa: F[A])(f: Try[A] => F[B]): F[B]
def map[A, B](fa: F[A])(f: A => B): F[B]
override def mapTry[A, B](fa: F[A])(f: Try[A] => B): F[B]
Definition Classes
CpsTryMonad
def pure[A](a: A): F[A]

Inherited methods

def restore[A](fa: F[A])(fx: Throwable => F[A]): F[A]
Inherited from
CpsTryMonad
def tryImpure[A](a: => F[A]): F[A]
Inherited from
CpsTryMonad
def tryPure[A](a: => A): F[A]
Inherited from
CpsTryMonad
def withAction[A](fa: F[A])(action: => Unit): F[A]
Inherited from
CpsTryMonad
def withAsyncAction[A](fa: F[A])(action: => F[Unit]): F[A]
Inherited from
CpsTryMonad