File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import Prelude hiding (bind)
13
13
import Control.Applicative.Indexed (class IxApplicative )
14
14
import Control.Apply.Indexed (class IxApply )
15
15
import Control.Bind.Indexed (class IxBind , ibind )
16
+ import Control.Monad.Indexed (class IxMonad )
16
17
import Data.Functor.Indexed (class IxFunctor )
17
18
import Data.Newtype (class Newtype )
18
19
import Effect (Effect )
@@ -148,6 +149,8 @@ instance ixApplicativeRender :: IxApplicative Render where
148
149
instance ixBindRender :: IxBind Render where
149
150
ibind (Render m) f = Render (Prelude .bind m \a -> case f a of Render b -> b)
150
151
152
+ instance ixMonadRender :: IxMonad Render
153
+
151
154
-- | Exported for use with qualified-do syntax
152
155
bind :: forall a b x y z m . IxBind m => m x y a -> (a -> m y z b ) -> m x z b
153
156
bind = ibind
@@ -168,6 +171,8 @@ instance applicativeRender :: TypeEquals x y => Applicative (Render x y) where
168
171
instance bindRender :: TypeEquals x y => Bind (Render x y ) where
169
172
bind (Render m) f = Render (Prelude .bind m \a -> case f a of Render b -> b)
170
173
174
+ instance monadRender :: TypeEquals x y => Monad (Render x y )
175
+
171
176
instance semigroupRender :: (TypeEquals x y , Semigroup a ) => Semigroup (Render x y a ) where
172
177
append (Render a) (Render b) = Render (append a b)
173
178
You can’t perform that action at this time.
0 commit comments