Skip to content

Commit

Permalink
lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Meltzer committed Feb 21, 2020
1 parent d7b7725 commit 1d09969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions repos/scalaz/core/src/main/scala/scalaz/StateT.scala
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ sealed abstract class IndexedStateT[F[_], -S1, S2, A] { self =>
def lift[M[_]](
implicit F: Monad[F],
M: Applicative[M]): IndexedStateT[λ[α => M[F[α]]], S1, S2, A] =
IndexedStateT.createState[λ[α => M[F[α]]], S1, S2, A]((m: Monad[λ[α => M[
F[α]]]]) => (s: S1) => M.point(self(s)))
IndexedStateT.createState[λ[α => M[F[α]]], S1, S2, A](
(m: Monad[λ[α => M[F[α]]]]) => (s: S1) => M.point(self(s)))

import Liskov._
def unlift[M[_], FF[_], S <: S1](
Expand Down

0 comments on commit 1d09969

Please sign in to comment.