Apply

object Apply
Companion:
class
class Object
trait Matchable
class Any
Apply.type

Type members

Classlikes

trait AllOps[F[_], A] extends Ops[F, A] with AllOps[F, A] with AllOps[F, A]
trait Ops[F[_], A] extends Serializable
trait ToApplyOps extends Serializable

Deprecated classlikes

@deprecated("Use cats.syntax object imports", "2.2.0")
Deprecated
@deprecated("Use cats.syntax object imports", "2.2.0")
object ops
Deprecated

Value members

Concrete methods

def align[F[_] : Apply]: Align[F]
def apply[F[_]](implicit instance: Apply[F]): Apply[F]

Summon an instance of Apply for F.

Summon an instance of Apply for F.

def semigroup[F[_], A](implicit f: Apply[F], sg: Semigroup[A]): Semigroup[F[A]]

This semigroup uses a product operation to combine Fs. If the Apply[F].product results in larger F (i.e. when F is a List), accumulative usage of this instance, such as combineAll, will result in Fs with exponentially increasing sizes.

This semigroup uses a product operation to combine Fs. If the Apply[F].product results in larger F (i.e. when F is a List), accumulative usage of this instance, such as combineAll, will result in Fs with exponentially increasing sizes.