Package

cats

state

Permalink

package state

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. state
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. type State[S, A] = StateT[Trampoline, S, A]

    Permalink
  2. abstract class StateFunctions extends AnyRef

    Permalink
  3. final class StateT[F[_], S, A] extends Serializable

    Permalink

    StateT[F, S, A] is similar to Kleisli[F, S, A] in that it takes an S argument and produces an A value wrapped in F.

    StateT[F, S, A] is similar to Kleisli[F, S, A] in that it takes an S argument and produces an A value wrapped in F. However, it also produces an S value representing the updated state (which is wrapped in the F context along with the A value.

Value Members

  1. object State extends StateFunctions with Serializable

    Permalink
  2. object StateT extends StateTInstances with Serializable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped