Mode

io.github.arainko.ducktape.Mode
See theMode companion object
sealed trait Mode[F[x]]

Attributes

Companion
object
Source
Mode.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait Accumulating[F]
class Either[E, Coll]
trait FailFast[F]
class Either[E]
class Option

Members list

Value members

Abstract methods

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

Attributes

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

Attributes

Source
Mode.scala
def traverseCollection[A, B, AColl <: Iterable[A], BColl <: Iterable[B]](collection: AColl, transformation: A => F[B])(using factory: Factory[B, BColl]): F[BColl]

Attributes

Source
Mode.scala