Pure

org.atnos.eff.Pure
case class Pure[R, A](value: A, last: Last[R]) extends Eff[R, A]

Attributes

Source:
Eff.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Eff[R, A]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def addLast(l: Last[R]): Eff[R, A]

add one last action to be executed after any computation chained to this Eff value

add one last action to be executed after any computation chained to this Eff value

Attributes

Source:
Eff.scala

Inherited methods

def *>[B](fb: Eff[R, B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def <*[B](fb: Eff[R, B]): Eff[R, A]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def <<[B](fb: Eff[R, B]): Eff[R, A]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def >>[B](fb: Eff[R, B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def >>=[B](f: A => Eff[R, B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def addLast(l: => Eff[R, Unit]): Eff[R, A]

add one last action to be executed after any computation chained to this Eff value

add one last action to be executed after any computation chained to this Eff value

Attributes

Inherited from:
Eff
Source:
Eff.scala
def ap[B](f: Eff[R, A => B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def flatMap[B](f: A => Eff[R, B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def flatten[B](implicit ev: A <:< Eff[R, B]): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def map[B](f: A => B): Eff[R, B]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def map2[B, C](fb: Eff[R, B])(f: (A, B) => C): Eff[R, C]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def map2Flatten[B, C](fb: Eff[R, B])(f: (A, B) => Eff[R, C]): Eff[R, C]

Attributes

Inherited from:
Eff
Source:
Eff.scala
def product[B](fb: Eff[R, B]): Eff[R, (A, B)]

Attributes

Inherited from:
Eff
Source:
Eff.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product