StateFunctions

class Object
trait Matchable
class Any
object Scalaz
object State

Value members

Concrete methods

def constantState[S, A](a: A, s: => S): State[S, A]
def get[S]: State[S, S]
def gets[S, T](f: S => T): State[S, T]
def init[S]: State[S, S]
def modify[S](f: S => S): State[S, Unit]
def put[S](s: S): State[S, Unit]
def state[S, A](a: A): State[S, A]

Inherited methods

def constantIndexedState[S1, S2, A](a: A, s: => S2): IndexedState[S1, S2, A]
Inherited from
IndexedStateFunctions
def iModify[S1, S2](f: S1 => S2): IndexedState[S1, S2, Unit]
Inherited from
IndexedStateFunctions
def iPut[S1, S2](s: S2): IndexedState[S1, S2, Unit]
Inherited from
IndexedStateFunctions