Accumulating

io.github.arainko.ducktape.Mode.Accumulating
See theAccumulating companion object
trait Accumulating[F[x]] extends Mode[F]

Attributes

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

Members list

Value members

Abstract methods

def product[A, B](fa: F[A], fb: F[B]): F[(A, 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[A], BColl <: Iterable[B]](collection: AColl, transformation: A => F[B])(using factory: Factory[B, BColl]): F[BColl]

Attributes

Inherited from:
Mode
Source
Mode.scala