Parallel

io.scalaland.chimney.internal.compiletime.fp.Parallel
See theParallel companion object
trait Parallel[F[_]] extends Applicative[F]

Attributes

Companion
object
Graph
Supertypes
trait Applicative[F]
trait Functor[F]
class Object
trait Matchable
class Any
Known subtypes
trait ParallelTraverse[F]

Members list

Value members

Abstract methods

def parMap2[A, B, C](fa: F[A], fb: F[B])(f: (A, B) => C): F[C]

Inherited methods

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

Attributes

Definition Classes
Inherited from:
Applicative
def map2[A, B, C](fa: F[A], fb: F[B])(f: (A, B) => C): F[C]

Attributes

Inherited from:
Applicative
def pure[A](a: A): F[A]

Attributes

Inherited from:
Applicative