ListEffect

org.atnos.eff.ListEffect
See theListEffect companion trait
object ListEffect extends ListEffect

Attributes

Companion
trait
Source
ListEffect.scala
Graph
Supertypes
trait ListEffect
trait ListCreation
class Object
trait Matchable
class Any
Show all
Self type
ListEffect.type

Members list

Type members

Inherited types

type _List[R] = Member[List, R]

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala
type _list[R] = MemberIn[List, R]

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala

Value members

Inherited methods

def empty[R : _list, A]: Eff[R, A]

create a list effect with no values

create a list effect with no values

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala
def fromList[R : _list, A](as: List[A]): Eff[R, A]

create a list effect from a list of values

create a list effect from a list of values

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala
def runList[R, U, A](effect: Eff[R, A])(implicit m: Aux[List, R, U]): Eff[U, List[A]]

run an effect stack starting with a list effect

run an effect stack starting with a list effect

Attributes

Inherited from:
ListInterpretation
Source
ListInterpretation.scala
def singleton[R : _list, A](a: A): Eff[R, A]

create a list effect from a single value

create a list effect from a single value

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala
def values[R : _list, A](as: A*): Eff[R, A]

create a list effect from a list of values

create a list effect from a list of values

Attributes

Inherited from:
ListCreation
Source
ListCreation.scala