ListCreation

org.atnos.eff.ListCreation
See theListCreation companion object
trait ListCreation

Attributes

Companion
object
Source
ListCreation.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object ListCreation
trait ListEffect
object ListEffect
object list

Members list

Type members

Types

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

Attributes

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

Attributes

Source
ListCreation.scala

Value members

Concrete methods

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

create a list effect with no values

create a list effect with no values

Attributes

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

Source
ListCreation.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

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

Source
ListCreation.scala