Package

scalaz

effect

Permalink

package effect

Visibility
  1. Public
  2. All

Type Members

  1. trait Dup[H[_[_]]] extends AnyRef

    Permalink

    Duplicate a handle in the parent region.

  2. trait DupFunctions extends AnyRef

    Permalink
  3. sealed abstract class DupInstances extends AnyRef

    Permalink
  4. trait Effects extends ToAllEffectTypeClassOps with AllEffectInstances

    Permalink
  5. sealed trait FinalizerHandle[R[_]] extends AnyRef

    Permalink

    A handle to a finalizer that allows you to duplicate it to a parent region using "dup".

    A handle to a finalizer that allows you to duplicate it to a parent region using "dup". Duplicating a finalizer means that instead of being performed when the current region terminates, it is performed when the parent region terminates.

  6. trait FinalizerHandleFunctions extends AnyRef

    Permalink
  7. sealed trait IO[A] extends AnyRef

    Permalink
  8. trait IOFunctions extends IOStd

    Permalink
  9. sealed abstract class IOInstances extends IOInstances0

    Permalink
  10. sealed abstract class IOInstances0 extends IOInstances1

    Permalink
  11. sealed abstract class IOInstances1 extends AnyRef

    Permalink
  12. sealed trait IORef[A] extends AnyRef

    Permalink

    A mutable reference in the IO monad.

    A mutable reference in the IO monad. Note that unsafePerformIO will allow leaking such a reference out of the monad, but any operations on a leaked reference are still monadic.

  13. trait IORefs extends AnyRef

    Permalink
  14. trait IOStd extends AnyRef

    Permalink

    IO Actions for writing to standard output and and reading from standard input

  15. sealed trait IoExceptionOr[A] extends AnyRef

    Permalink
  16. trait IoExceptionOrFunctions extends AnyRef

    Permalink
  17. sealed trait IvoryTower extends AnyRef

    Permalink
  18. trait IvoryTowers extends AnyRef

    Permalink
  19. sealed abstract class KleisliEffectInstances extends KleisliEffectInstances0

    Permalink
  20. sealed abstract class KleisliEffectInstances0 extends KleisliEffectInstances1

    Permalink
  21. sealed abstract class KleisliEffectInstances1 extends KleisliInstances

    Permalink
  22. trait LiftControlIO[F[_]] extends AnyRef

    Permalink

  23. trait LiftIO[F[_]] extends AnyRef

    Permalink

  24. trait MonadCatchIO[M[_]] extends MonadIO[M]

    Permalink
  25. sealed trait MonadCatchIOFunctions extends AnyRef

    Permalink
  26. trait MonadControlIO[F[_]] extends LiftControlIO[F] with Monad[F]

    Permalink

  27. trait MonadIO[F[_]] extends LiftIO[F] with Monad[F]

    Permalink

  28. sealed trait RefCountedFinalizer extends AnyRef

    Permalink
  29. trait RefCountedFinalizers extends AnyRef

    Permalink
  30. sealed trait RegionT[S, P[_], A] extends AnyRef

    Permalink

    A monad transformer in which scarce resources can be opened.

    A monad transformer in which scarce resources can be opened. When the region terminates, all opened resources will be closed automatically. It's a type error to return an opened resource from the region, and no I/O with closed resources is possible.

  31. trait RegionTFunctions extends AnyRef

    Permalink
  32. sealed abstract class RegionTInstances extends RegionTInstances1

    Permalink
  33. sealed abstract class RegionTInstances1 extends AnyRef

    Permalink
  34. trait RegionTLiftIO[S, M[_]] extends LiftIO[[α]RegionT[S, M, α]]

    Permalink
  35. trait RegionTMonad[S, M[_]] extends Monad[[α]RegionT[S, M, α]]

    Permalink
  36. trait Resource[F] extends AnyRef

    Permalink

  37. sealed trait ST[S, A] extends AnyRef

    Permalink

    Purely functional mutable state threads.

    Purely functional mutable state threads. Based on JL and SPJ's paper "Lazy Functional State Threads"

  38. sealed trait STArray[S, A] extends AnyRef

    Permalink

    Mutable array in state thread S containing values of type A.

  39. trait STArrayFunctions extends AnyRef

    Permalink
  40. trait STFunctions extends AnyRef

    Permalink
  41. sealed abstract class STInstance0 extends AnyRef

    Permalink
  42. sealed abstract class STInstances extends STInstance0

    Permalink
  43. sealed trait STRef[S, A] extends AnyRef

    Permalink

    Mutable variable in state thread S containing a value of type A.

    Mutable variable in state thread S containing a value of type A. http://research.microsoft.com/en-us/um/people/simonpj/papers/lazy-functional-state-threads.ps.Z

  44. trait STRefFunctions extends AnyRef

    Permalink
  45. sealed abstract class STRefInstances extends AnyRef

    Permalink
  46. trait SafeApp extends AnyRef

    Permalink

    A safe alternative to the App trait in the Scala standard library.

    A safe alternative to the App trait in the Scala standard library. This trait provides an implementation of the main method by calling unsafePerformIO on a specified IO action.

  47. sealed abstract class StateTEffectInstances extends StateTEffectInstances0

    Permalink
  48. sealed abstract class StateTEffectInstances0 extends StateTInstances

    Permalink
  49. trait StateTLiftIO[M[_], S] extends LiftIO[[α]IndexedStateT[M, S, S, α]]

    Permalink

Value Members

  1. object Dup extends DupInstances with DupFunctions

    Permalink
  2. object Effect extends Effects

    Permalink
  3. object FinalizerHandle extends FinalizerHandleFunctions

    Permalink
  4. object IO extends IOInstances with IOFunctions

    Permalink
  5. object IORef extends IORefs

    Permalink
  6. object IoExceptionOr extends IoExceptionOrFunctions

    Permalink
  7. object IvoryTower extends IvoryTowers

    Permalink
  8. object LiftControlIO

    Permalink
  9. object LiftIO

    Permalink
  10. object MonadCatchIO extends MonadCatchIOFunctions

    Permalink
  11. object MonadControlIO

    Permalink
  12. object MonadIO

    Permalink
  13. object RefCountedFinalizer extends RefCountedFinalizers

    Permalink
  14. object RegionT extends RegionTInstances with RegionTFunctions

    Permalink
  15. object Resource

    Permalink
  16. object ST extends STInstances with STFunctions

    Permalink
  17. object STArray extends STArrayFunctions

    Permalink
  18. object STRef extends STRefInstances with STRefFunctions

    Permalink

Deprecated Value Members

  1. object kleisliEffect extends KleisliEffectInstances

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Instances are in the respective companion objects now and should be picked up without imports

  2. object stateTEffect extends StateTEffectInstances

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 7.1) Instances are in the respective companion objects now and should be picked up without imports

Ungrouped