Monadic

magnolia1.Monadic
See theMonadic companion object
trait Monadic[F[_]]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Type members

Types

type Apply[X] = F[X]

Value members

Abstract methods

def flatMap[A, B](from: F[A])(fn: A => F[B]): F[B]
def map[A, B](from: F[A])(fn: A => B): F[B]
def point[A](value: A): F[A]