FailFast

io.github.arainko.ducktape.fallible.Mode$.FailFast
See theFailFast companion object
trait FailFast[F[x]] extends Mode[F]

Attributes

Companion:
object
Source:
Mode.scala
Graph
Supertypes
trait Mode[F]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def flatMap[A, B](fa: F[A], f: A => F[B]): F[B]

Attributes

Source:
Mode.scala

Inherited methods

def map[A, B](fa: F[A], f: A => B): F[B]

Attributes

Inherited from:
Mode
Source:
Mode.scala
def pure[A](value: A): F[A]

Attributes

Inherited from:
Mode
Source:
Mode.scala
def traverseCollection[A, B, AColl <: (Iterable), BColl <: (Iterable)](collection: AColl[A])(using transformer: FallibleTransformer[F, A, B], factory: Factory[B, BColl[B]]): F[BColl[B]]

Attributes

Inherited from:
Mode
Source:
Mode.scala