Skip to content

Commit

Permalink
Add ReaderT value alias
Browse files Browse the repository at this point in the history
  • Loading branch information
adelbertc committed Jul 1, 2015
1 parent a42fa44 commit 6db9bf7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/scala/scalaz/package.scala
Expand Up @@ -114,6 +114,7 @@ package object scalaz {
type |>=|[G[_], F[_]] = MonadPartialOrder[G, F]

type ReaderT[F[_], E, A] = Kleisli[F, E, A]
val ReaderT = Kleisli
type =?>[E, A] = Kleisli[Option, E, A]
type Reader[E, A] = ReaderT[Id, E, A]

Expand Down

0 comments on commit 6db9bf7

Please sign in to comment.