Copyright | (C) 2018 Ryan Scott |
---|---|
License | BSD-style (see LICENSE) |
Maintainer | Ryan Scott |
Stability | experimental |
Portability | non-portable |
Safe Haskell | None |
Language | Haskell2010 |
Defines the promoted and singled versions of the Monad
type class.
Synopsis
- class PFunctor (f :: Type -> Type) where
- class SFunctor (f :: Type -> Type) where
- class PApplicative m => PMonad (m :: Type -> Type) where
- class SApplicative m => SMonad (m :: Type -> Type) where
- (%>>=) :: forall a b (t :: m a) (t :: (~>) a (m b)). Sing t -> Sing t -> Sing (Apply (Apply (>>=@#@$) t) t :: m b)
- (%>>) :: forall a b (t :: m a) (t :: m b). Sing t -> Sing t -> Sing (Apply (Apply (>>@#@$) t) t :: m b)
- sReturn :: forall a (t :: a). Sing t -> Sing (Apply ReturnSym0 t :: m a)
- sFail :: forall a (t :: Symbol). Sing t -> Sing (Apply FailSym0 t :: m a)
- class (PAlternative m, PMonad m) => PMonadPlus (m :: Type -> Type) where
- class (SAlternative m, SMonad m) => SMonadPlus (m :: Type -> Type) where
- type family MapM (arg :: (~>) a (m b)) (arg :: t a) :: m (t b)
- sMapM :: forall m a b (t :: (~>) a (m b)) (t :: t a). (STraversable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply MapMSym0 t) t :: m (t b))
- type family MapM_ (a :: (~>) a (m b)) (a :: t a) :: m () where ...
- sMapM_ :: forall t m a b (t :: (~>) a (m b)) (t :: t a). (SFoldable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply MapM_Sym0 t) t :: m ())
- type family ForM (a :: t a) (a :: (~>) a (m b)) :: m (t b) where ...
- sForM :: forall t m a b (t :: t a) (t :: (~>) a (m b)). (STraversable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply ForMSym0 t) t :: m (t b))
- type family Sequence (arg :: t (m a)) :: m (t a)
- sSequence :: forall m a (t :: t (m a)). (STraversable t, SMonad m) => Sing t -> Sing (Apply SequenceSym0 t :: m (t a))
- type family Sequence_ (a :: t (m a)) :: m () where ...
- sSequence_ :: forall t m a (t :: t (m a)). (SFoldable t, SMonad m) => Sing t -> Sing (Apply Sequence_Sym0 t :: m ())
- type family (a :: (~>) a (m b)) =<< (a :: m a) :: m b where ...
- (%=<<) :: forall m a b (t :: (~>) a (m b)) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply (=<<@#@$) t) t :: m b)
- type family ((a :: (~>) a (m b)) >=> (a :: (~>) b (m c))) (a :: a) :: m c where ...
- (%>=>) :: forall m a b c (t :: (~>) a (m b)) (t :: (~>) b (m c)) (t :: a). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (>=>@#@$) t) t) t :: m c)
- type family ((a :: (~>) b (m c)) <=< (a :: (~>) a (m b))) (a :: a) :: m c where ...
- (%<=<) :: forall m b c a (t :: (~>) b (m c)) (t :: (~>) a (m b)) (t :: a). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (<=<@#@$) t) t) t :: m c)
- type family Void (a :: f a) :: f () where ...
- sVoid :: forall f a (t :: f a). SFunctor f => Sing t -> Sing (Apply VoidSym0 t :: f ())
- type family Join (a :: m (m a)) :: m a where ...
- sJoin :: forall m a (t :: m (m a)). SMonad m => Sing t -> Sing (Apply JoinSym0 t :: m a)
- type family Msum (a :: t (m a)) :: m a where ...
- sMsum :: forall t m a (t :: t (m a)). (SFoldable t, SMonadPlus m) => Sing t -> Sing (Apply MsumSym0 t :: m a)
- type family Mfilter (a :: (~>) a Bool) (a :: m a) :: m a where ...
- sMfilter :: forall m a (t :: (~>) a Bool) (t :: m a). SMonadPlus m => Sing t -> Sing t -> Sing (Apply (Apply MfilterSym0 t) t :: m a)
- type family FilterM (a :: (~>) a (m Bool)) (a :: [a]) :: m [a] where ...
- sFilterM :: forall m a (t :: (~>) a (m Bool)) (t :: [a]). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply FilterMSym0 t) t :: m [a])
- type family MapAndUnzipM (a :: (~>) a (m (b, c))) (a :: [a]) :: m ([b], [c]) where ...
- sMapAndUnzipM :: forall m a b c (t :: (~>) a (m (b, c))) (t :: [a]). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply MapAndUnzipMSym0 t) t :: m ([b], [c]))
- type family ZipWithM (a :: (~>) a ((~>) b (m c))) (a :: [a]) (a :: [b]) :: m [c] where ...
- sZipWithM :: forall m a b c (t :: (~>) a ((~>) b (m c))) (t :: [a]) (t :: [b]). SApplicative m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithMSym0 t) t) t :: m [c])
- type family ZipWithM_ (a :: (~>) a ((~>) b (m c))) (a :: [a]) (a :: [b]) :: m () where ...
- sZipWithM_ :: forall m a b c (t :: (~>) a ((~>) b (m c))) (t :: [a]) (t :: [b]). SApplicative m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithM_Sym0 t) t) t :: m ())
- type family FoldlM (a :: (~>) b ((~>) a (m b))) (a :: b) (a :: t a) :: m b where ...
- sFoldlM :: forall t m b a (t :: (~>) b ((~>) a (m b))) (t :: b) (t :: t a). (SFoldable t, SMonad m) => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlMSym0 t) t) t :: m b)
- type family ReplicateM (a :: Nat) (a :: m a) :: m [a] where ...
- sReplicateM :: forall m a (t :: Nat) (t :: m a). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply ReplicateMSym0 t) t :: m [a])
- type family ReplicateM_ (a :: Nat) (a :: m a) :: m () where ...
- sReplicateM_ :: forall m a (t :: Nat) (t :: m a). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply ReplicateM_Sym0 t) t :: m ())
- type family Guard (a :: Bool) :: f () where ...
- sGuard :: forall f (t :: Bool). SAlternative f => Sing t -> Sing (Apply GuardSym0 t :: f ())
- type family When (a :: Bool) (a :: f ()) :: f () where ...
- sWhen :: forall f (t :: Bool) (t :: f ()). SApplicative f => Sing t -> Sing t -> Sing (Apply (Apply WhenSym0 t) t :: f ())
- type family Unless (a :: Bool) (a :: f ()) :: f () where ...
- sUnless :: forall f (t :: Bool) (t :: f ()). SApplicative f => Sing t -> Sing t -> Sing (Apply (Apply UnlessSym0 t) t :: f ())
- type family LiftM (a :: (~>) a1 r) (a :: m a1) :: m r where ...
- sLiftM :: forall m a1 r (t :: (~>) a1 r) (t :: m a1). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply LiftMSym0 t) t :: m r)
- type family LiftM2 (a :: (~>) a1 ((~>) a2 r)) (a :: m a1) (a :: m a2) :: m r where ...
- sLiftM2 :: forall m a1 a2 r (t :: (~>) a1 ((~>) a2 r)) (t :: m a1) (t :: m a2). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply LiftM2Sym0 t) t) t :: m r)
- type family LiftM3 (a :: (~>) a1 ((~>) a2 ((~>) a3 r))) (a :: m a1) (a :: m a2) (a :: m a3) :: m r where ...
- sLiftM3 :: forall m a1 a2 a3 r (t :: (~>) a1 ((~>) a2 ((~>) a3 r))) (t :: m a1) (t :: m a2) (t :: m a3). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply LiftM3Sym0 t) t) t) t :: m r)
- type family LiftM4 (a :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 r)))) (a :: m a1) (a :: m a2) (a :: m a3) (a :: m a4) :: m r where ...
- sLiftM4 :: forall m a1 a2 a3 a4 r (t :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 r)))) (t :: m a1) (t :: m a2) (t :: m a3) (t :: m a4). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply (Apply LiftM4Sym0 t) t) t) t) t :: m r)
- type family LiftM5 (a :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 ((~>) a5 r))))) (a :: m a1) (a :: m a2) (a :: m a3) (a :: m a4) (a :: m a5) :: m r where ...
- sLiftM5 :: forall m a1 a2 a3 a4 a5 r (t :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 ((~>) a5 r))))) (t :: m a1) (t :: m a2) (t :: m a3) (t :: m a4) (t :: m a5). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply (Apply (Apply LiftM5Sym0 t) t) t) t) t) t :: m r)
- type family Ap (a :: m ((~>) a b)) (a :: m a) :: m b where ...
- sAp :: forall m a b (t :: m ((~>) a b)) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply ApSym0 t) t :: m b)
- type family (a :: (~>) a b) <$!> (a :: m a) :: m b where ...
- (%<$!>) :: forall m a b (t :: (~>) a b) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply (<$!>@#@$) t) t :: m b)
- data FmapSym0 :: forall a6989586621679545127 b6989586621679545128 f6989586621679545126. (~>) ((~>) a6989586621679545127 b6989586621679545128) ((~>) (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128))
- data FmapSym1 (arg6989586621679545520 :: (~>) a6989586621679545127 b6989586621679545128) :: forall f6989586621679545126. (~>) (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128)
- type FmapSym2 (arg6989586621679545520 :: (~>) a6989586621679545127 b6989586621679545128) (arg6989586621679545521 :: f6989586621679545126 a6989586621679545127) = Fmap arg6989586621679545520 arg6989586621679545521
- data (>>=@#@$) :: forall a6989586621679545156 b6989586621679545157 m6989586621679545155. (~>) (m6989586621679545155 a6989586621679545156) ((~>) ((~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) (m6989586621679545155 b6989586621679545157))
- data (>>=@#@$$) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) :: forall b6989586621679545157. (~>) ((~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) (m6989586621679545155 b6989586621679545157)
- type (>>=@#@$$$) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) (arg6989586621679545628 :: (~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) = (>>=) arg6989586621679545627 arg6989586621679545628
- data (>>@#@$) :: forall a6989586621679545158 b6989586621679545159 m6989586621679545155. (~>) (m6989586621679545155 a6989586621679545158) ((~>) (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159))
- data (>>@#@$$) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) :: forall b6989586621679545159. (~>) (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159)
- type (>>@#@$$$) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) (arg6989586621679545632 :: m6989586621679545155 b6989586621679545159) = (>>) arg6989586621679545631 arg6989586621679545632
- data ReturnSym0 :: forall a6989586621679545160 m6989586621679545155. (~>) a6989586621679545160 (m6989586621679545155 a6989586621679545160)
- type ReturnSym1 (arg6989586621679545635 :: a6989586621679545160) = Return arg6989586621679545635
- data FailSym0 :: forall a6989586621679545161 m6989586621679545155. (~>) Symbol (m6989586621679545155 a6989586621679545161)
- type FailSym1 (arg6989586621679545637 :: Symbol) = Fail arg6989586621679545637
- type MzeroSym0 = Mzero
- data MplusSym0 :: forall a6989586621679545213 m6989586621679545211. (~>) (m6989586621679545211 a6989586621679545213) ((~>) (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213))
- data MplusSym1 (arg6989586621679545681 :: m6989586621679545211 a6989586621679545213) :: (~>) (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213)
- type MplusSym2 (arg6989586621679545681 :: m6989586621679545211 a6989586621679545213) (arg6989586621679545682 :: m6989586621679545211 a6989586621679545213) = Mplus arg6989586621679545681 arg6989586621679545682
- data MapMSym0 :: forall a6989586621680751001 b6989586621680751002 m6989586621680751000 t6989586621680750994. (~>) ((~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) ((~>) (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002)))
- data MapMSym1 (arg6989586621680751012 :: (~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) :: forall t6989586621680750994. (~>) (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002))
- type MapMSym2 (arg6989586621680751012 :: (~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) (arg6989586621680751013 :: t6989586621680750994 a6989586621680751001) = MapM arg6989586621680751012 arg6989586621680751013
- data MapM_Sym0 :: forall a6989586621680452668 b6989586621680452669 m6989586621680452667 t6989586621680452666. (~>) ((~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) ((~>) (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ()))
- data MapM_Sym1 (a6989586621680453266 :: (~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) :: forall t6989586621680452666. (~>) (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ())
- type MapM_Sym2 (a6989586621680453266 :: (~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) (a6989586621680453267 :: t6989586621680452666 a6989586621680452668) = MapM_ a6989586621680453266 a6989586621680453267
- data ForMSym0 :: forall a6989586621680756577 b6989586621680756578 m6989586621680756576 t6989586621680756575. (~>) (t6989586621680756575 a6989586621680756577) ((~>) ((~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) (m6989586621680756576 (t6989586621680756575 b6989586621680756578)))
- data ForMSym1 (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) :: forall b6989586621680756578 m6989586621680756576. (~>) ((~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) (m6989586621680756576 (t6989586621680756575 b6989586621680756578))
- type ForMSym2 (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) (a6989586621680757133 :: (~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) = ForM a6989586621680757132 a6989586621680757133
- data SequenceSym0 :: forall a6989586621680751004 m6989586621680751003 t6989586621680750994. (~>) (t6989586621680750994 (m6989586621680751003 a6989586621680751004)) (m6989586621680751003 (t6989586621680750994 a6989586621680751004))
- type SequenceSym1 (arg6989586621680751016 :: t6989586621680750994 (m6989586621680751003 a6989586621680751004)) = Sequence arg6989586621680751016
- data Sequence_Sym0 :: forall a6989586621680452658 m6989586621680452657 t6989586621680452656. (~>) (t6989586621680452656 (m6989586621680452657 a6989586621680452658)) (m6989586621680452657 ())
- type Sequence_Sym1 (a6989586621680453258 :: t6989586621680452656 (m6989586621680452657 a6989586621680452658)) = Sequence_ a6989586621680453258
- data (=<<@#@$) :: forall a6989586621679545078 b6989586621679545079 m6989586621679545077. (~>) ((~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) ((~>) (m6989586621679545077 a6989586621679545078) (m6989586621679545077 b6989586621679545079))
- data (=<<@#@$$) (a6989586621679545473 :: (~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) :: (~>) (m6989586621679545077 a6989586621679545078) (m6989586621679545077 b6989586621679545079)
- type (=<<@#@$$$) (a6989586621679545473 :: (~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) (a6989586621679545474 :: m6989586621679545077 a6989586621679545078) = (=<<) a6989586621679545473 a6989586621679545474
- data (>=>@#@$) :: forall a6989586621681211338 b6989586621681211339 c6989586621681211340 m6989586621681211337. (~>) ((~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) ((~>) ((~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) ((~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340)))
- data (>=>@#@$$) (a6989586621681211771 :: (~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) :: forall c6989586621681211340. (~>) ((~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) ((~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340))
- data (a6989586621681211771 :: (~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) >=>@#@$$$ (a6989586621681211772 :: (~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) :: (~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340)
- data (<=<@#@$) :: forall a6989586621681211336 b6989586621681211334 c6989586621681211335 m6989586621681211333. (~>) ((~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) ((~>) ((~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) ((~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335)))
- data (<=<@#@$$) (a6989586621681211796 :: (~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) :: forall a6989586621681211336. (~>) ((~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) ((~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335))
- data (a6989586621681211796 :: (~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) <=<@#@$$$ (a6989586621681211797 :: (~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) :: (~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335)
- data VoidSym0 :: forall a6989586621679714510 f6989586621679714509. (~>) (f6989586621679714509 a6989586621679714510) (f6989586621679714509 ())
- type VoidSym1 (a6989586621679714581 :: f6989586621679714509 a6989586621679714510) = Void a6989586621679714581
- data JoinSym0 :: forall a6989586621679545081 m6989586621679545080. (~>) (m6989586621679545080 (m6989586621679545080 a6989586621679545081)) (m6989586621679545080 a6989586621679545081)
- type JoinSym1 (a6989586621679545479 :: m6989586621679545080 (m6989586621679545080 a6989586621679545081)) = Join a6989586621679545479
- data MsumSym0 :: forall a6989586621680452652 m6989586621680452651 t6989586621680452650. (~>) (t6989586621680452650 (m6989586621680452651 a6989586621680452652)) (m6989586621680452651 a6989586621680452652)
- type MsumSym1 (a6989586621680453253 :: t6989586621680452650 (m6989586621680452651 a6989586621680452652)) = Msum a6989586621680453253
- data MfilterSym0 :: forall a6989586621681211304 m6989586621681211303. (~>) ((~>) a6989586621681211304 Bool) ((~>) (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304))
- data MfilterSym1 (a6989586621681211639 :: (~>) a6989586621681211304 Bool) :: forall m6989586621681211303. (~>) (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304)
- type MfilterSym2 (a6989586621681211639 :: (~>) a6989586621681211304 Bool) (a6989586621681211640 :: m6989586621681211303 a6989586621681211304) = Mfilter a6989586621681211639 a6989586621681211640
- data FilterMSym0 :: forall a6989586621681211342 m6989586621681211341. (~>) ((~>) a6989586621681211342 (m6989586621681211341 Bool)) ((~>) [a6989586621681211342] (m6989586621681211341 [a6989586621681211342]))
- data FilterMSym1 (a6989586621681211805 :: (~>) a6989586621681211342 (m6989586621681211341 Bool)) :: (~>) [a6989586621681211342] (m6989586621681211341 [a6989586621681211342])
- type FilterMSym2 (a6989586621681211805 :: (~>) a6989586621681211342 (m6989586621681211341 Bool)) (a6989586621681211806 :: [a6989586621681211342]) = FilterM a6989586621681211805 a6989586621681211806
- data MapAndUnzipMSym0 :: forall a6989586621681211330 b6989586621681211331 c6989586621681211332 m6989586621681211329. (~>) ((~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) ((~>) [a6989586621681211330] (m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])))
- data MapAndUnzipMSym1 (a6989586621681211765 :: (~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) :: (~>) [a6989586621681211330] (m6989586621681211329 ([b6989586621681211331], [c6989586621681211332]))
- type MapAndUnzipMSym2 (a6989586621681211765 :: (~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) (a6989586621681211766 :: [a6989586621681211330]) = MapAndUnzipM a6989586621681211765 a6989586621681211766
- data ZipWithMSym0 :: forall a6989586621681211326 b6989586621681211327 c6989586621681211328 m6989586621681211325. (~>) ((~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) ((~>) [a6989586621681211326] ((~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328])))
- data ZipWithMSym1 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) :: (~>) [a6989586621681211326] ((~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328]))
- data ZipWithMSym2 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) (a6989586621681211757 :: [a6989586621681211326]) :: (~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328])
- type ZipWithMSym3 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) (a6989586621681211757 :: [a6989586621681211326]) (a6989586621681211758 :: [b6989586621681211327]) = ZipWithM a6989586621681211756 a6989586621681211757 a6989586621681211758
- data ZipWithM_Sym0 :: forall a6989586621681211322 b6989586621681211323 c6989586621681211324 m6989586621681211321. (~>) ((~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) ((~>) [a6989586621681211322] ((~>) [b6989586621681211323] (m6989586621681211321 ())))
- data ZipWithM_Sym1 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) :: (~>) [a6989586621681211322] ((~>) [b6989586621681211323] (m6989586621681211321 ()))
- data ZipWithM_Sym2 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) (a6989586621681211748 :: [a6989586621681211322]) :: (~>) [b6989586621681211323] (m6989586621681211321 ())
- type ZipWithM_Sym3 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) (a6989586621681211748 :: [a6989586621681211322]) (a6989586621681211749 :: [b6989586621681211323]) = ZipWithM_ a6989586621681211747 a6989586621681211748 a6989586621681211749
- data FoldlMSym0 :: forall a6989586621680452681 b6989586621680452680 m6989586621680452679 t6989586621680452678. (~>) ((~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) ((~>) b6989586621680452680 ((~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680)))
- data FoldlMSym1 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) :: forall t6989586621680452678. (~>) b6989586621680452680 ((~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680))
- data FoldlMSym2 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) (a6989586621680453303 :: b6989586621680452680) :: forall t6989586621680452678. (~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680)
- type FoldlMSym3 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) (a6989586621680453303 :: b6989586621680452680) (a6989586621680453304 :: t6989586621680452678 a6989586621680452681) = FoldlM a6989586621680453302 a6989586621680453303 a6989586621680453304
- data ReplicateMSym0 :: forall a6989586621681211312 m6989586621681211311. (~>) Nat ((~>) (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312]))
- data ReplicateMSym1 (a6989586621681211704 :: Nat) :: forall a6989586621681211312 m6989586621681211311. (~>) (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312])
- type ReplicateMSym2 (a6989586621681211704 :: Nat) (a6989586621681211705 :: m6989586621681211311 a6989586621681211312) = ReplicateM a6989586621681211704 a6989586621681211705
- data ReplicateM_Sym0 :: forall a6989586621681211310 m6989586621681211309. (~>) Nat ((~>) (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ()))
- data ReplicateM_Sym1 (a6989586621681211685 :: Nat) :: forall a6989586621681211310 m6989586621681211309. (~>) (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ())
- type ReplicateM_Sym2 (a6989586621681211685 :: Nat) (a6989586621681211686 :: m6989586621681211309 a6989586621681211310) = ReplicateM_ a6989586621681211685 a6989586621681211686
- data GuardSym0 :: forall f6989586621679545047. (~>) Bool (f6989586621679545047 ())
- type GuardSym1 (a6989586621679545216 :: Bool) = Guard a6989586621679545216
- data WhenSym0 :: forall f6989586621679545076. (~>) Bool ((~>) (f6989586621679545076 ()) (f6989586621679545076 ()))
- data WhenSym1 (a6989586621679545464 :: Bool) :: forall f6989586621679545076. (~>) (f6989586621679545076 ()) (f6989586621679545076 ())
- type WhenSym2 (a6989586621679545464 :: Bool) (a6989586621679545465 :: f6989586621679545076 ()) = When a6989586621679545464 a6989586621679545465
- data UnlessSym0 :: forall f6989586621681211308. (~>) Bool ((~>) (f6989586621681211308 ()) (f6989586621681211308 ()))
- data UnlessSym1 (a6989586621681211676 :: Bool) :: forall f6989586621681211308. (~>) (f6989586621681211308 ()) (f6989586621681211308 ())
- type UnlessSym2 (a6989586621681211676 :: Bool) (a6989586621681211677 :: f6989586621681211308 ()) = Unless a6989586621681211676 a6989586621681211677
- data LiftMSym0 :: forall a16989586621679545074 m6989586621679545073 r6989586621679545075. (~>) ((~>) a16989586621679545074 r6989586621679545075) ((~>) (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075))
- data LiftMSym1 (a6989586621679545451 :: (~>) a16989586621679545074 r6989586621679545075) :: forall m6989586621679545073. (~>) (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075)
- type LiftMSym2 (a6989586621679545451 :: (~>) a16989586621679545074 r6989586621679545075) (a6989586621679545452 :: m6989586621679545073 a16989586621679545074) = LiftM a6989586621679545451 a6989586621679545452
- data LiftM2Sym0 :: forall a16989586621679545070 a26989586621679545071 m6989586621679545069 r6989586621679545072. (~>) ((~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) ((~>) (m6989586621679545069 a16989586621679545070) ((~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072)))
- data LiftM2Sym1 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) :: forall m6989586621679545069. (~>) (m6989586621679545069 a16989586621679545070) ((~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072))
- data LiftM2Sym2 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) :: (~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072)
- type LiftM2Sym3 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) (a6989586621679545427 :: m6989586621679545069 a26989586621679545071) = LiftM2 a6989586621679545425 a6989586621679545426 a6989586621679545427
- data LiftM3Sym0 :: forall a16989586621679545065 a26989586621679545066 a36989586621679545067 m6989586621679545064 r6989586621679545068. (~>) ((~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) ((~>) (m6989586621679545064 a16989586621679545065) ((~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068))))
- data LiftM3Sym1 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) :: forall m6989586621679545064. (~>) (m6989586621679545064 a16989586621679545065) ((~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068)))
- data LiftM3Sym2 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) :: (~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068))
- data LiftM3Sym3 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) :: (~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068)
- type LiftM3Sym4 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) (a6989586621679545386 :: m6989586621679545064 a36989586621679545067) = LiftM3 a6989586621679545383 a6989586621679545384 a6989586621679545385 a6989586621679545386
- data LiftM4Sym0 :: forall a16989586621679545059 a26989586621679545060 a36989586621679545061 a46989586621679545062 m6989586621679545058 r6989586621679545063. (~>) ((~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) ((~>) (m6989586621679545058 a16989586621679545059) ((~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063)))))
- data LiftM4Sym1 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) :: forall m6989586621679545058. (~>) (m6989586621679545058 a16989586621679545059) ((~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063))))
- data LiftM4Sym2 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) :: (~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063)))
- data LiftM4Sym3 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) :: (~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063))
- data LiftM4Sym4 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) :: (~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063)
- type LiftM4Sym5 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) (a6989586621679545326 :: m6989586621679545058 a46989586621679545062) = LiftM4 a6989586621679545322 a6989586621679545323 a6989586621679545324 a6989586621679545325 a6989586621679545326
- data LiftM5Sym0 :: forall a16989586621679545052 a26989586621679545053 a36989586621679545054 a46989586621679545055 a56989586621679545056 m6989586621679545051 r6989586621679545057. (~>) ((~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) ((~>) (m6989586621679545051 a16989586621679545052) ((~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057))))))
- data LiftM5Sym1 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) :: forall m6989586621679545051. (~>) (m6989586621679545051 a16989586621679545052) ((~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)))))
- data LiftM5Sym2 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) :: (~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057))))
- data LiftM5Sym3 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) :: (~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)))
- data LiftM5Sym4 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) :: (~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057))
- data LiftM5Sym5 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) :: (~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)
- type LiftM5Sym6 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) (a6989586621679545244 :: m6989586621679545051 a56989586621679545056) = LiftM5 a6989586621679545239 a6989586621679545240 a6989586621679545241 a6989586621679545242 a6989586621679545243 a6989586621679545244
- data ApSym0 :: forall a6989586621679545049 b6989586621679545050 m6989586621679545048. (~>) (m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) ((~>) (m6989586621679545048 a6989586621679545049) (m6989586621679545048 b6989586621679545050))
- data ApSym1 (a6989586621679545218 :: m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) :: (~>) (m6989586621679545048 a6989586621679545049) (m6989586621679545048 b6989586621679545050)
- type ApSym2 (a6989586621679545218 :: m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) (a6989586621679545219 :: m6989586621679545048 a6989586621679545049) = Ap a6989586621679545218 a6989586621679545219
- data (<$!>@#@$) :: forall a6989586621681211306 b6989586621681211307 m6989586621681211305. (~>) ((~>) a6989586621681211306 b6989586621681211307) ((~>) (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307))
- data (<$!>@#@$$) (a6989586621681211659 :: (~>) a6989586621681211306 b6989586621681211307) :: forall m6989586621681211305. (~>) (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307)
- type (<$!>@#@$$$) (a6989586621681211659 :: (~>) a6989586621681211306 b6989586621681211307) (a6989586621681211660 :: m6989586621681211305 a6989586621681211306) = (<$!>) a6989586621681211659 a6989586621681211660
Documentation
class PFunctor (f :: Type -> Type) Source #
Instances
PFunctor [] Source # | |
PFunctor Maybe Source # | |
PFunctor Min Source # | |
PFunctor Max Source # | |
PFunctor First Source # | |
PFunctor Last Source # | |
PFunctor Option Source # | |
PFunctor Identity Source # | |
PFunctor First Source # | |
PFunctor Last Source # | |
PFunctor Dual Source # | |
PFunctor Sum Source # | |
PFunctor Product Source # | |
PFunctor Down Source # | |
PFunctor NonEmpty Source # | |
PFunctor (Either a) Source # | |
PFunctor ((,) a) Source # | |
PFunctor (Arg a) Source # | |
PFunctor (Const m :: Type -> Type) Source # | |
class SFunctor (f :: Type -> Type) where Source #
sFmap :: forall a b (t :: (~>) a b) (t :: f a). Sing t -> Sing t -> Sing (Apply (Apply FmapSym0 t) t :: f b) Source #
Instances
SFunctor [] Source # | |
SFunctor Maybe Source # | |
SFunctor Min Source # | |
SFunctor Max Source # | |
SFunctor First Source # | |
SFunctor Last Source # | |
SFunctor Option Source # | |
SFunctor Identity Source # | |
SFunctor First Source # | |
SFunctor Last Source # | |
SFunctor Dual Source # | |
SFunctor Sum Source # | |
SFunctor Product Source # | |
SFunctor Down Source # | |
SFunctor NonEmpty Source # | |
SFunctor (Either a) Source # | |
SFunctor ((,) a) Source # | |
SFunctor (Arg a) Source # | |
SFunctor (Const m :: Type -> Type) Source # | |
class PApplicative m => PMonad (m :: Type -> Type) Source #
type (arg :: m a) >>= (arg :: (~>) a (m b)) :: m b infixl 1 Source #
type (arg :: m a) >> (arg :: m b) :: m b infixl 1 Source #
Instances
PMonad [] Source # | |
PMonad Maybe Source # | |
PMonad Min Source # | |
PMonad Max Source # | |
PMonad First Source # | |
PMonad Last Source # | |
PMonad Option Source # | |
PMonad Identity Source # | |
PMonad First Source # | |
PMonad Last Source # | |
PMonad Dual Source # | |
PMonad Sum Source # | |
PMonad Product Source # | |
PMonad Down Source # | |
PMonad NonEmpty Source # | |
PMonad (Either e) Source # | |
PMonad ((,) a) Source # | |
class SApplicative m => SMonad (m :: Type -> Type) where Source #
(%>>=) :: forall a b (t :: m a) (t :: (~>) a (m b)). Sing t -> Sing t -> Sing (Apply (Apply (>>=@#@$) t) t :: m b) infixl 1 Source #
(%>>) :: forall a b (t :: m a) (t :: m b). Sing t -> Sing t -> Sing (Apply (Apply (>>@#@$) t) t :: m b) infixl 1 Source #
sReturn :: forall a (t :: a). Sing t -> Sing (Apply ReturnSym0 t :: m a) Source #
sFail :: forall a (t :: Symbol). Sing t -> Sing (Apply FailSym0 t :: m a) Source #
(%>>) :: forall a b (t :: m a) (t :: m b). (Apply (Apply (>>@#@$) t) t :: m b) ~ Apply (Apply TFHelper_6989586621679545657Sym0 t) t => Sing t -> Sing t -> Sing (Apply (Apply (>>@#@$) t) t :: m b) infixl 1 Source #
sReturn :: forall a (t :: a). (Apply ReturnSym0 t :: m a) ~ Apply Return_6989586621679545667Sym0 t => Sing t -> Sing (Apply ReturnSym0 t :: m a) Source #
sFail :: forall a (t :: Symbol). (Apply FailSym0 t :: m a) ~ Apply Fail_6989586621679545674Sym0 t => Sing t -> Sing (Apply FailSym0 t :: m a) Source #
Instances
SMonad [] Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal | |
SMonad Maybe Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal | |
SMonad Min Source # | |
SMonad Max Source # | |
SMonad First Source # | |
SMonad Last Source # | |
SMonad Option Source # | |
SMonad Identity Source # | |
SMonad First Source # | |
SMonad Last Source # | |
SMonad Dual Source # | |
Defined in Data.Singletons.Prelude.Semigroup.Internal | |
SMonad Sum Source # | |
Defined in Data.Singletons.Prelude.Semigroup.Internal | |
SMonad Product Source # | |
Defined in Data.Singletons.Prelude.Semigroup.Internal | |
SMonad Down Source # | |
SMonad NonEmpty Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal | |
SMonad (Either e) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal | |
SMonoid a => SMonad ((,) a) Source # | |
class (PAlternative m, PMonad m) => PMonadPlus (m :: Type -> Type) Source #
Instances
PMonadPlus [] Source # | |
PMonadPlus Maybe Source # | |
PMonadPlus Option Source # | |
class (SAlternative m, SMonad m) => SMonadPlus (m :: Type -> Type) where Source #
Nothing
sMzero :: forall a. Sing (MzeroSym0 :: m a) Source #
sMplus :: forall a (t :: m a) (t :: m a). Sing t -> Sing t -> Sing (Apply (Apply MplusSym0 t) t :: m a) Source #
sMzero :: forall a. (MzeroSym0 :: m a) ~ Mzero_6989586621679545685Sym0 => Sing (MzeroSym0 :: m a) Source #
sMplus :: forall a (t :: m a) (t :: m a). (Apply (Apply MplusSym0 t) t :: m a) ~ Apply (Apply Mplus_6989586621679545699Sym0 t) t => Sing t -> Sing t -> Sing (Apply (Apply MplusSym0 t) t :: m a) Source #
Instances
SMonadPlus [] Source # | |
SMonadPlus Maybe Source # | |
SMonadPlus Option Source # | |
type family MapM (arg :: (~>) a (m b)) (arg :: t a) :: m (t b) Source #
Instances
sMapM :: forall m a b (t :: (~>) a (m b)) (t :: t a). (STraversable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply MapMSym0 t) t :: m (t b)) Source #
sMapM_ :: forall t m a b (t :: (~>) a (m b)) (t :: t a). (SFoldable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply MapM_Sym0 t) t :: m ()) Source #
sForM :: forall t m a b (t :: t a) (t :: (~>) a (m b)). (STraversable t, SMonad m) => Sing t -> Sing t -> Sing (Apply (Apply ForMSym0 t) t :: m (t b)) Source #
type family Sequence (arg :: t (m a)) :: m (t a) Source #
Instances
sSequence :: forall m a (t :: t (m a)). (STraversable t, SMonad m) => Sing t -> Sing (Apply SequenceSym0 t :: m (t a)) Source #
type family Sequence_ (a :: t (m a)) :: m () where ... Source #
Sequence_ a_6989586621680453256 = Apply (Apply (Apply FoldrSym0 (>>@#@$)) (Apply ReturnSym0 Tuple0Sym0)) a_6989586621680453256 |
sSequence_ :: forall t m a (t :: t (m a)). (SFoldable t, SMonad m) => Sing t -> Sing (Apply Sequence_Sym0 t :: m ()) Source #
(%=<<) :: forall m a b (t :: (~>) a (m b)) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply (=<<@#@$) t) t :: m b) infixr 1 Source #
type family ((a :: (~>) a (m b)) >=> (a :: (~>) b (m c))) (a :: a) :: m c where ... infixr 1 Source #
(%>=>) :: forall m a b c (t :: (~>) a (m b)) (t :: (~>) b (m c)) (t :: a). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (>=>@#@$) t) t) t :: m c) infixr 1 Source #
type family ((a :: (~>) b (m c)) <=< (a :: (~>) a (m b))) (a :: a) :: m c where ... infixr 1 Source #
(%<=<) :: forall m b c a (t :: (~>) b (m c)) (t :: (~>) a (m b)) (t :: a). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (<=<@#@$) t) t) t :: m c) infixr 1 Source #
sMsum :: forall t m a (t :: t (m a)). (SFoldable t, SMonadPlus m) => Sing t -> Sing (Apply MsumSym0 t :: m a) Source #
sMfilter :: forall m a (t :: (~>) a Bool) (t :: m a). SMonadPlus m => Sing t -> Sing t -> Sing (Apply (Apply MfilterSym0 t) t :: m a) Source #
sFilterM :: forall m a (t :: (~>) a (m Bool)) (t :: [a]). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply FilterMSym0 t) t :: m [a]) Source #
type family MapAndUnzipM (a :: (~>) a (m (b, c))) (a :: [a]) :: m ([b], [c]) where ... Source #
MapAndUnzipM f xs = Apply (Apply (<$>@#@$) UnzipSym0) (Apply (Apply TraverseSym0 f) xs) |
sMapAndUnzipM :: forall m a b c (t :: (~>) a (m (b, c))) (t :: [a]). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply MapAndUnzipMSym0 t) t :: m ([b], [c])) Source #
type family ZipWithM (a :: (~>) a ((~>) b (m c))) (a :: [a]) (a :: [b]) :: m [c] where ... Source #
ZipWithM f xs ys = Apply SequenceASym0 (Apply (Apply (Apply ZipWithSym0 f) xs) ys) |
sZipWithM :: forall m a b c (t :: (~>) a ((~>) b (m c))) (t :: [a]) (t :: [b]). SApplicative m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithMSym0 t) t) t :: m [c]) Source #
type family ZipWithM_ (a :: (~>) a ((~>) b (m c))) (a :: [a]) (a :: [b]) :: m () where ... Source #
ZipWithM_ f xs ys = Apply SequenceA_Sym0 (Apply (Apply (Apply ZipWithSym0 f) xs) ys) |
sZipWithM_ :: forall m a b c (t :: (~>) a ((~>) b (m c))) (t :: [a]) (t :: [b]). SApplicative m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithM_Sym0 t) t) t :: m ()) Source #
sFoldlM :: forall t m b a (t :: (~>) b ((~>) a (m b))) (t :: b) (t :: t a). (SFoldable t, SMonad m) => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlMSym0 t) t) t :: m b) Source #
type family ReplicateM (a :: Nat) (a :: m a) :: m [a] where ... Source #
ReplicateM cnt0 f = Apply (Let6989586621681211710LoopSym2 cnt0 f) cnt0 |
sReplicateM :: forall m a (t :: Nat) (t :: m a). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply ReplicateMSym0 t) t :: m [a]) Source #
type family ReplicateM_ (a :: Nat) (a :: m a) :: m () where ... Source #
ReplicateM_ cnt0 f = Apply (Let6989586621681211691LoopSym2 cnt0 f) cnt0 |
sReplicateM_ :: forall m a (t :: Nat) (t :: m a). SApplicative m => Sing t -> Sing t -> Sing (Apply (Apply ReplicateM_Sym0 t) t :: m ()) Source #
sGuard :: forall f (t :: Bool). SAlternative f => Sing t -> Sing (Apply GuardSym0 t :: f ()) Source #
type family When (a :: Bool) (a :: f ()) :: f () where ... Source #
When p s = Case_6989586621679545470 p s p |
sWhen :: forall f (t :: Bool) (t :: f ()). SApplicative f => Sing t -> Sing t -> Sing (Apply (Apply WhenSym0 t) t :: f ()) Source #
type family Unless (a :: Bool) (a :: f ()) :: f () where ... Source #
Unless p s = Case_6989586621681211682 p s p |
sUnless :: forall f (t :: Bool) (t :: f ()). SApplicative f => Sing t -> Sing t -> Sing (Apply (Apply UnlessSym0 t) t :: f ()) Source #
sLiftM :: forall m a1 r (t :: (~>) a1 r) (t :: m a1). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply LiftMSym0 t) t :: m r) Source #
sLiftM2 :: forall m a1 a2 r (t :: (~>) a1 ((~>) a2 r)) (t :: m a1) (t :: m a2). SMonad m => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply LiftM2Sym0 t) t) t :: m r) Source #
type family LiftM3 (a :: (~>) a1 ((~>) a2 ((~>) a3 r))) (a :: m a1) (a :: m a2) (a :: m a3) :: m r where ... Source #
sLiftM3 :: forall m a1 a2 a3 r (t :: (~>) a1 ((~>) a2 ((~>) a3 r))) (t :: m a1) (t :: m a2) (t :: m a3). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply LiftM3Sym0 t) t) t) t :: m r) Source #
type family LiftM4 (a :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 r)))) (a :: m a1) (a :: m a2) (a :: m a3) (a :: m a4) :: m r where ... Source #
sLiftM4 :: forall m a1 a2 a3 a4 r (t :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 r)))) (t :: m a1) (t :: m a2) (t :: m a3) (t :: m a4). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply (Apply LiftM4Sym0 t) t) t) t) t :: m r) Source #
type family LiftM5 (a :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 ((~>) a5 r))))) (a :: m a1) (a :: m a2) (a :: m a3) (a :: m a4) (a :: m a5) :: m r where ... Source #
sLiftM5 :: forall m a1 a2 a3 a4 a5 r (t :: (~>) a1 ((~>) a2 ((~>) a3 ((~>) a4 ((~>) a5 r))))) (t :: m a1) (t :: m a2) (t :: m a3) (t :: m a4) (t :: m a5). SMonad m => Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply (Apply (Apply LiftM5Sym0 t) t) t) t) t) t :: m r) Source #
sAp :: forall m a b (t :: m ((~>) a b)) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply ApSym0 t) t :: m b) Source #
(%<$!>) :: forall m a b (t :: (~>) a b) (t :: m a). SMonad m => Sing t -> Sing t -> Sing (Apply (Apply (<$!>@#@$) t) t :: m b) infixl 4 Source #
Defunctionalization symbols
data FmapSym0 :: forall a6989586621679545127 b6989586621679545128 f6989586621679545126. (~>) ((~>) a6989586621679545127 b6989586621679545128) ((~>) (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128)) Source #
Instances
SFunctor f => SingI (FmapSym0 :: TyFun (a ~> b) (f a ~> f b) -> Type) Source # | |
SuppressUnusedWarnings (FmapSym0 :: TyFun (a6989586621679545127 ~> b6989586621679545128) (f6989586621679545126 a6989586621679545127 ~> f6989586621679545126 b6989586621679545128) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (FmapSym0 :: TyFun (a6989586621679545127 ~> b6989586621679545128) (f6989586621679545126 a6989586621679545127 ~> f6989586621679545126 b6989586621679545128) -> Type) (arg6989586621679545520 :: a6989586621679545127 ~> b6989586621679545128) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (FmapSym0 :: TyFun (a6989586621679545127 ~> b6989586621679545128) (f6989586621679545126 a6989586621679545127 ~> f6989586621679545126 b6989586621679545128) -> Type) (arg6989586621679545520 :: a6989586621679545127 ~> b6989586621679545128) = (FmapSym1 arg6989586621679545520 f6989586621679545126 :: TyFun (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128) -> Type) |
data FmapSym1 (arg6989586621679545520 :: (~>) a6989586621679545127 b6989586621679545128) :: forall f6989586621679545126. (~>) (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128) Source #
Instances
(SFunctor f, SingI d) => SingI (FmapSym1 d f :: TyFun (f a) (f b) -> Type) Source # | |
SuppressUnusedWarnings (FmapSym1 arg6989586621679545520 f6989586621679545126 :: TyFun (f6989586621679545126 a6989586621679545127) (f6989586621679545126 b6989586621679545128) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (FmapSym1 arg6989586621679545520 f :: TyFun (f a) (f b) -> Type) (arg6989586621679545521 :: f a) Source # | |
type FmapSym2 (arg6989586621679545520 :: (~>) a6989586621679545127 b6989586621679545128) (arg6989586621679545521 :: f6989586621679545126 a6989586621679545127) = Fmap arg6989586621679545520 arg6989586621679545521 Source #
data (>>=@#@$) :: forall a6989586621679545156 b6989586621679545157 m6989586621679545155. (~>) (m6989586621679545155 a6989586621679545156) ((~>) ((~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) (m6989586621679545155 b6989586621679545157)) infixl 1 Source #
Instances
SMonad m => SingI ((>>=@#@$) :: TyFun (m a) ((a ~> m b) ~> m b) -> Type) Source # | |
SuppressUnusedWarnings ((>>=@#@$) :: TyFun (m6989586621679545155 a6989586621679545156) ((a6989586621679545156 ~> m6989586621679545155 b6989586621679545157) ~> m6989586621679545155 b6989586621679545157) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply ((>>=@#@$) :: TyFun (m6989586621679545155 a6989586621679545156) ((a6989586621679545156 ~> m6989586621679545155 b6989586621679545157) ~> m6989586621679545155 b6989586621679545157) -> Type) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply ((>>=@#@$) :: TyFun (m6989586621679545155 a6989586621679545156) ((a6989586621679545156 ~> m6989586621679545155 b6989586621679545157) ~> m6989586621679545155 b6989586621679545157) -> Type) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) = (arg6989586621679545627 >>=@#@$$ b6989586621679545157 :: TyFun (a6989586621679545156 ~> m6989586621679545155 b6989586621679545157) (m6989586621679545155 b6989586621679545157) -> Type) |
data (>>=@#@$$) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) :: forall b6989586621679545157. (~>) ((~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) (m6989586621679545155 b6989586621679545157) infixl 1 Source #
Instances
(SMonad m, SingI d) => SingI (d >>=@#@$$ b :: TyFun (a ~> m b) (m b) -> Type) Source # | |
SuppressUnusedWarnings (arg6989586621679545627 >>=@#@$$ b6989586621679545157 :: TyFun (a6989586621679545156 ~> m6989586621679545155 b6989586621679545157) (m6989586621679545155 b6989586621679545157) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (arg6989586621679545627 >>=@#@$$ b :: TyFun (a ~> m b) (m b) -> Type) (arg6989586621679545628 :: a ~> m b) Source # | |
type (>>=@#@$$$) (arg6989586621679545627 :: m6989586621679545155 a6989586621679545156) (arg6989586621679545628 :: (~>) a6989586621679545156 (m6989586621679545155 b6989586621679545157)) = (>>=) arg6989586621679545627 arg6989586621679545628 Source #
data (>>@#@$) :: forall a6989586621679545158 b6989586621679545159 m6989586621679545155. (~>) (m6989586621679545155 a6989586621679545158) ((~>) (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159)) infixl 1 Source #
Instances
SMonad m => SingI ((>>@#@$) :: TyFun (m a) (m b ~> m b) -> Type) Source # | |
SuppressUnusedWarnings ((>>@#@$) :: TyFun (m6989586621679545155 a6989586621679545158) (m6989586621679545155 b6989586621679545159 ~> m6989586621679545155 b6989586621679545159) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply ((>>@#@$) :: TyFun (m6989586621679545155 a6989586621679545158) (m6989586621679545155 b6989586621679545159 ~> m6989586621679545155 b6989586621679545159) -> Type) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply ((>>@#@$) :: TyFun (m6989586621679545155 a6989586621679545158) (m6989586621679545155 b6989586621679545159 ~> m6989586621679545155 b6989586621679545159) -> Type) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) = (arg6989586621679545631 >>@#@$$ b6989586621679545159 :: TyFun (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159) -> Type) |
data (>>@#@$$) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) :: forall b6989586621679545159. (~>) (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159) infixl 1 Source #
Instances
(SMonad m, SingI d) => SingI (d >>@#@$$ b :: TyFun (m b) (m b) -> Type) Source # | |
SuppressUnusedWarnings (arg6989586621679545631 >>@#@$$ b6989586621679545159 :: TyFun (m6989586621679545155 b6989586621679545159) (m6989586621679545155 b6989586621679545159) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (arg6989586621679545631 >>@#@$$ b :: TyFun (m b) (m b) -> Type) (arg6989586621679545632 :: m b) Source # | |
type (>>@#@$$$) (arg6989586621679545631 :: m6989586621679545155 a6989586621679545158) (arg6989586621679545632 :: m6989586621679545155 b6989586621679545159) = (>>) arg6989586621679545631 arg6989586621679545632 Source #
data ReturnSym0 :: forall a6989586621679545160 m6989586621679545155. (~>) a6989586621679545160 (m6989586621679545155 a6989586621679545160) Source #
Instances
SMonad m => SingI (ReturnSym0 :: TyFun a (m a) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing ReturnSym0 Source # | |
SuppressUnusedWarnings (ReturnSym0 :: TyFun a6989586621679545160 (m6989586621679545155 a6989586621679545160) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (ReturnSym0 :: TyFun a (m6989586621679545155 a) -> Type) (arg6989586621679545635 :: a) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (ReturnSym0 :: TyFun a (m6989586621679545155 a) -> Type) (arg6989586621679545635 :: a) = (Return arg6989586621679545635 :: m6989586621679545155 a) |
type ReturnSym1 (arg6989586621679545635 :: a6989586621679545160) = Return arg6989586621679545635 Source #
data FailSym0 :: forall a6989586621679545161 m6989586621679545155. (~>) Symbol (m6989586621679545155 a6989586621679545161) Source #
Instances
SMonad m => SingI (FailSym0 :: TyFun Symbol (m a) -> Type) Source # | |
SuppressUnusedWarnings (FailSym0 :: TyFun Symbol (m6989586621679545155 a6989586621679545161) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (FailSym0 :: TyFun Symbol (m6989586621679545155 a6989586621679545161) -> Type) (arg6989586621679545637 :: Symbol) Source # | |
data MplusSym0 :: forall a6989586621679545213 m6989586621679545211. (~>) (m6989586621679545211 a6989586621679545213) ((~>) (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213)) Source #
Instances
SMonadPlus m => SingI (MplusSym0 :: TyFun (m a) (m a ~> m a) -> Type) Source # | |
SuppressUnusedWarnings (MplusSym0 :: TyFun (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213 ~> m6989586621679545211 a6989586621679545213) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (MplusSym0 :: TyFun (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213 ~> m6989586621679545211 a6989586621679545213) -> Type) (arg6989586621679545681 :: m6989586621679545211 a6989586621679545213) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal |
data MplusSym1 (arg6989586621679545681 :: m6989586621679545211 a6989586621679545213) :: (~>) (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213) Source #
Instances
(SMonadPlus m, SingI d) => SingI (MplusSym1 d :: TyFun (m a) (m a) -> Type) Source # | |
SuppressUnusedWarnings (MplusSym1 arg6989586621679545681 :: TyFun (m6989586621679545211 a6989586621679545213) (m6989586621679545211 a6989586621679545213) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (MplusSym1 arg6989586621679545681 :: TyFun (m a) (m a) -> Type) (arg6989586621679545682 :: m a) Source # | |
type MplusSym2 (arg6989586621679545681 :: m6989586621679545211 a6989586621679545213) (arg6989586621679545682 :: m6989586621679545211 a6989586621679545213) = Mplus arg6989586621679545681 arg6989586621679545682 Source #
data MapMSym0 :: forall a6989586621680751001 b6989586621680751002 m6989586621680751000 t6989586621680750994. (~>) ((~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) ((~>) (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002))) Source #
Instances
(STraversable t, SMonad m) => SingI (MapMSym0 :: TyFun (a ~> m b) (t a ~> m (t b)) -> Type) Source # | |
SuppressUnusedWarnings (MapMSym0 :: TyFun (a6989586621680751001 ~> m6989586621680751000 b6989586621680751002) (t6989586621680750994 a6989586621680751001 ~> m6989586621680751000 (t6989586621680750994 b6989586621680751002)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable suppressUnusedWarnings :: () Source # | |
type Apply (MapMSym0 :: TyFun (a6989586621680751001 ~> m6989586621680751000 b6989586621680751002) (t6989586621680750994 a6989586621680751001 ~> m6989586621680751000 (t6989586621680750994 b6989586621680751002)) -> Type) (arg6989586621680751012 :: a6989586621680751001 ~> m6989586621680751000 b6989586621680751002) Source # | |
Defined in Data.Singletons.Prelude.Traversable type Apply (MapMSym0 :: TyFun (a6989586621680751001 ~> m6989586621680751000 b6989586621680751002) (t6989586621680750994 a6989586621680751001 ~> m6989586621680751000 (t6989586621680750994 b6989586621680751002)) -> Type) (arg6989586621680751012 :: a6989586621680751001 ~> m6989586621680751000 b6989586621680751002) = (MapMSym1 arg6989586621680751012 t6989586621680750994 :: TyFun (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002)) -> Type) |
data MapMSym1 (arg6989586621680751012 :: (~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) :: forall t6989586621680750994. (~>) (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002)) Source #
Instances
(STraversable t, SMonad m, SingI d) => SingI (MapMSym1 d t :: TyFun (t a) (m (t b)) -> Type) Source # | |
SuppressUnusedWarnings (MapMSym1 arg6989586621680751012 t6989586621680750994 :: TyFun (t6989586621680750994 a6989586621680751001) (m6989586621680751000 (t6989586621680750994 b6989586621680751002)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable suppressUnusedWarnings :: () Source # | |
type Apply (MapMSym1 arg6989586621680751012 t :: TyFun (t a) (m (t b)) -> Type) (arg6989586621680751013 :: t a) Source # | |
type MapMSym2 (arg6989586621680751012 :: (~>) a6989586621680751001 (m6989586621680751000 b6989586621680751002)) (arg6989586621680751013 :: t6989586621680750994 a6989586621680751001) = MapM arg6989586621680751012 arg6989586621680751013 Source #
data MapM_Sym0 :: forall a6989586621680452668 b6989586621680452669 m6989586621680452667 t6989586621680452666. (~>) ((~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) ((~>) (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ())) Source #
Instances
(SFoldable t, SMonad m) => SingI (MapM_Sym0 :: TyFun (a ~> m b) (t a ~> m ()) -> Type) Source # | |
SuppressUnusedWarnings (MapM_Sym0 :: TyFun (a6989586621680452668 ~> m6989586621680452667 b6989586621680452669) (t6989586621680452666 a6989586621680452668 ~> m6989586621680452667 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (MapM_Sym0 :: TyFun (a6989586621680452668 ~> m6989586621680452667 b6989586621680452669) (t6989586621680452666 a6989586621680452668 ~> m6989586621680452667 ()) -> Type) (a6989586621680453266 :: a6989586621680452668 ~> m6989586621680452667 b6989586621680452669) Source # | |
Defined in Data.Singletons.Prelude.Foldable type Apply (MapM_Sym0 :: TyFun (a6989586621680452668 ~> m6989586621680452667 b6989586621680452669) (t6989586621680452666 a6989586621680452668 ~> m6989586621680452667 ()) -> Type) (a6989586621680453266 :: a6989586621680452668 ~> m6989586621680452667 b6989586621680452669) = (MapM_Sym1 a6989586621680453266 t6989586621680452666 :: TyFun (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ()) -> Type) |
data MapM_Sym1 (a6989586621680453266 :: (~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) :: forall t6989586621680452666. (~>) (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ()) Source #
Instances
(SFoldable t, SMonad m, SingI d) => SingI (MapM_Sym1 d t :: TyFun (t a) (m ()) -> Type) Source # | |
SuppressUnusedWarnings (MapM_Sym1 a6989586621680453266 t6989586621680452666 :: TyFun (t6989586621680452666 a6989586621680452668) (m6989586621680452667 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (MapM_Sym1 a6989586621680453266 t :: TyFun (t a) (m ()) -> Type) (a6989586621680453267 :: t a) Source # | |
type MapM_Sym2 (a6989586621680453266 :: (~>) a6989586621680452668 (m6989586621680452667 b6989586621680452669)) (a6989586621680453267 :: t6989586621680452666 a6989586621680452668) = MapM_ a6989586621680453266 a6989586621680453267 Source #
data ForMSym0 :: forall a6989586621680756577 b6989586621680756578 m6989586621680756576 t6989586621680756575. (~>) (t6989586621680756575 a6989586621680756577) ((~>) ((~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) (m6989586621680756576 (t6989586621680756575 b6989586621680756578))) Source #
Instances
(STraversable t, SMonad m) => SingI (ForMSym0 :: TyFun (t a) ((a ~> m b) ~> m (t b)) -> Type) Source # | |
SuppressUnusedWarnings (ForMSym0 :: TyFun (t6989586621680756575 a6989586621680756577) ((a6989586621680756577 ~> m6989586621680756576 b6989586621680756578) ~> m6989586621680756576 (t6989586621680756575 b6989586621680756578)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable suppressUnusedWarnings :: () Source # | |
type Apply (ForMSym0 :: TyFun (t6989586621680756575 a6989586621680756577) ((a6989586621680756577 ~> m6989586621680756576 b6989586621680756578) ~> m6989586621680756576 (t6989586621680756575 b6989586621680756578)) -> Type) (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) Source # | |
Defined in Data.Singletons.Prelude.Traversable type Apply (ForMSym0 :: TyFun (t6989586621680756575 a6989586621680756577) ((a6989586621680756577 ~> m6989586621680756576 b6989586621680756578) ~> m6989586621680756576 (t6989586621680756575 b6989586621680756578)) -> Type) (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) = (ForMSym1 a6989586621680757132 b6989586621680756578 m6989586621680756576 :: TyFun (a6989586621680756577 ~> m6989586621680756576 b6989586621680756578) (m6989586621680756576 (t6989586621680756575 b6989586621680756578)) -> Type) |
data ForMSym1 (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) :: forall b6989586621680756578 m6989586621680756576. (~>) ((~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) (m6989586621680756576 (t6989586621680756575 b6989586621680756578)) Source #
Instances
(STraversable t, SMonad m, SingI d) => SingI (ForMSym1 d b m :: TyFun (a ~> m b) (m (t b)) -> Type) Source # | |
SuppressUnusedWarnings (ForMSym1 a6989586621680757132 b6989586621680756578 m6989586621680756576 :: TyFun (a6989586621680756577 ~> m6989586621680756576 b6989586621680756578) (m6989586621680756576 (t6989586621680756575 b6989586621680756578)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable suppressUnusedWarnings :: () Source # | |
type Apply (ForMSym1 a6989586621680757132 b m :: TyFun (a ~> m b) (m (t b)) -> Type) (a6989586621680757133 :: a ~> m b) Source # | |
type ForMSym2 (a6989586621680757132 :: t6989586621680756575 a6989586621680756577) (a6989586621680757133 :: (~>) a6989586621680756577 (m6989586621680756576 b6989586621680756578)) = ForM a6989586621680757132 a6989586621680757133 Source #
data SequenceSym0 :: forall a6989586621680751004 m6989586621680751003 t6989586621680750994. (~>) (t6989586621680750994 (m6989586621680751003 a6989586621680751004)) (m6989586621680751003 (t6989586621680750994 a6989586621680751004)) Source #
Instances
(STraversable t, SMonad m) => SingI (SequenceSym0 :: TyFun (t (m a)) (m (t a)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable sing :: Sing SequenceSym0 Source # | |
SuppressUnusedWarnings (SequenceSym0 :: TyFun (t6989586621680750994 (m6989586621680751003 a6989586621680751004)) (m6989586621680751003 (t6989586621680750994 a6989586621680751004)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Traversable suppressUnusedWarnings :: () Source # | |
type Apply (SequenceSym0 :: TyFun (t (m a)) (m (t a)) -> Type) (arg6989586621680751016 :: t (m a)) Source # | |
Defined in Data.Singletons.Prelude.Traversable type Apply (SequenceSym0 :: TyFun (t (m a)) (m (t a)) -> Type) (arg6989586621680751016 :: t (m a)) = Sequence arg6989586621680751016 |
type SequenceSym1 (arg6989586621680751016 :: t6989586621680750994 (m6989586621680751003 a6989586621680751004)) = Sequence arg6989586621680751016 Source #
data Sequence_Sym0 :: forall a6989586621680452658 m6989586621680452657 t6989586621680452656. (~>) (t6989586621680452656 (m6989586621680452657 a6989586621680452658)) (m6989586621680452657 ()) Source #
Instances
(SFoldable t, SMonad m) => SingI (Sequence_Sym0 :: TyFun (t (m a)) (m ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable sing :: Sing Sequence_Sym0 Source # | |
SuppressUnusedWarnings (Sequence_Sym0 :: TyFun (t6989586621680452656 (m6989586621680452657 a6989586621680452658)) (m6989586621680452657 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (Sequence_Sym0 :: TyFun (t (m a)) (m ()) -> Type) (a6989586621680453258 :: t (m a)) Source # | |
Defined in Data.Singletons.Prelude.Foldable type Apply (Sequence_Sym0 :: TyFun (t (m a)) (m ()) -> Type) (a6989586621680453258 :: t (m a)) = Sequence_ a6989586621680453258 |
type Sequence_Sym1 (a6989586621680453258 :: t6989586621680452656 (m6989586621680452657 a6989586621680452658)) = Sequence_ a6989586621680453258 Source #
data (=<<@#@$) :: forall a6989586621679545078 b6989586621679545079 m6989586621679545077. (~>) ((~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) ((~>) (m6989586621679545077 a6989586621679545078) (m6989586621679545077 b6989586621679545079)) infixr 1 Source #
Instances
SMonad m => SingI ((=<<@#@$) :: TyFun (a ~> m b) (m a ~> m b) -> Type) Source # | |
SuppressUnusedWarnings ((=<<@#@$) :: TyFun (a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) (m6989586621679545077 a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply ((=<<@#@$) :: TyFun (a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) (m6989586621679545077 a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) -> Type) (a6989586621679545473 :: a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply ((=<<@#@$) :: TyFun (a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) (m6989586621679545077 a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) -> Type) (a6989586621679545473 :: a6989586621679545078 ~> m6989586621679545077 b6989586621679545079) = (=<<@#@$$) a6989586621679545473 |
data (=<<@#@$$) (a6989586621679545473 :: (~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) :: (~>) (m6989586621679545077 a6989586621679545078) (m6989586621679545077 b6989586621679545079) infixr 1 Source #
Instances
(SMonad m, SingI d) => SingI ((=<<@#@$$) d :: TyFun (m a) (m b) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing ((=<<@#@$$) d) Source # | |
SuppressUnusedWarnings ((=<<@#@$$) a6989586621679545473 :: TyFun (m6989586621679545077 a6989586621679545078) (m6989586621679545077 b6989586621679545079) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply ((=<<@#@$$) a6989586621679545473 :: TyFun (m a) (m b) -> Type) (a6989586621679545474 :: m a) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply ((=<<@#@$$) a6989586621679545473 :: TyFun (m a) (m b) -> Type) (a6989586621679545474 :: m a) = a6989586621679545473 =<< a6989586621679545474 |
type (=<<@#@$$$) (a6989586621679545473 :: (~>) a6989586621679545078 (m6989586621679545077 b6989586621679545079)) (a6989586621679545474 :: m6989586621679545077 a6989586621679545078) = (=<<) a6989586621679545473 a6989586621679545474 Source #
data (>=>@#@$) :: forall a6989586621681211338 b6989586621681211339 c6989586621681211340 m6989586621681211337. (~>) ((~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) ((~>) ((~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) ((~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340))) infixr 1 Source #
Instances
SMonad m => SingI ((>=>@#@$) :: TyFun (a ~> m b) ((b ~> m c) ~> (a ~> m c)) -> Type) Source # | |
SuppressUnusedWarnings ((>=>@#@$) :: TyFun (a6989586621681211338 ~> m6989586621681211337 b6989586621681211339) ((b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) ~> (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply ((>=>@#@$) :: TyFun (a6989586621681211338 ~> m6989586621681211337 b6989586621681211339) ((b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) ~> (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340)) -> Type) (a6989586621681211771 :: a6989586621681211338 ~> m6989586621681211337 b6989586621681211339) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply ((>=>@#@$) :: TyFun (a6989586621681211338 ~> m6989586621681211337 b6989586621681211339) ((b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) ~> (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340)) -> Type) (a6989586621681211771 :: a6989586621681211338 ~> m6989586621681211337 b6989586621681211339) = (a6989586621681211771 >=>@#@$$ c6989586621681211340 :: TyFun (b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340) -> Type) |
data (>=>@#@$$) (a6989586621681211771 :: (~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) :: forall c6989586621681211340. (~>) ((~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) ((~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340)) infixr 1 Source #
Instances
(SMonad m, SingI d) => SingI (d >=>@#@$$ c :: TyFun (b ~> m c) (a ~> m c) -> Type) Source # | |
SuppressUnusedWarnings (a6989586621681211771 >=>@#@$$ c6989586621681211340 :: TyFun (b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (a6989586621681211771 >=>@#@$$ c6989586621681211340 :: TyFun (b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340) -> Type) (a6989586621681211772 :: b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (a6989586621681211771 >=>@#@$$ c6989586621681211340 :: TyFun (b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) (a6989586621681211338 ~> m6989586621681211337 c6989586621681211340) -> Type) (a6989586621681211772 :: b6989586621681211339 ~> m6989586621681211337 c6989586621681211340) = a6989586621681211771 >=>@#@$$$ a6989586621681211772 |
data (a6989586621681211771 :: (~>) a6989586621681211338 (m6989586621681211337 b6989586621681211339)) >=>@#@$$$ (a6989586621681211772 :: (~>) b6989586621681211339 (m6989586621681211337 c6989586621681211340)) :: (~>) a6989586621681211338 (m6989586621681211337 c6989586621681211340) infixr 1 Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (d1 >=>@#@$$$ d2 :: TyFun a (m c) -> Type) Source # | |
SuppressUnusedWarnings (a6989586621681211772 >=>@#@$$$ a6989586621681211771 :: TyFun a6989586621681211338 (m6989586621681211337 c6989586621681211340) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (a6989586621681211772 >=>@#@$$$ a6989586621681211771 :: TyFun a (m c) -> Type) (a6989586621681211773 :: a) Source # | |
data (<=<@#@$) :: forall a6989586621681211336 b6989586621681211334 c6989586621681211335 m6989586621681211333. (~>) ((~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) ((~>) ((~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) ((~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335))) infixr 1 Source #
Instances
SMonad m => SingI ((<=<@#@$) :: TyFun (b ~> m c) ((a ~> m b) ~> (a ~> m c)) -> Type) Source # | |
SuppressUnusedWarnings ((<=<@#@$) :: TyFun (b6989586621681211334 ~> m6989586621681211333 c6989586621681211335) ((a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) ~> (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply ((<=<@#@$) :: TyFun (b6989586621681211334 ~> m6989586621681211333 c6989586621681211335) ((a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) ~> (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335)) -> Type) (a6989586621681211796 :: b6989586621681211334 ~> m6989586621681211333 c6989586621681211335) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply ((<=<@#@$) :: TyFun (b6989586621681211334 ~> m6989586621681211333 c6989586621681211335) ((a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) ~> (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335)) -> Type) (a6989586621681211796 :: b6989586621681211334 ~> m6989586621681211333 c6989586621681211335) = (a6989586621681211796 <=<@#@$$ a6989586621681211336 :: TyFun (a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335) -> Type) |
data (<=<@#@$$) (a6989586621681211796 :: (~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) :: forall a6989586621681211336. (~>) ((~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) ((~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335)) infixr 1 Source #
Instances
(SMonad m, SingI d) => SingI (d <=<@#@$$ a :: TyFun (a ~> m b) (a ~> m c) -> Type) Source # | |
SuppressUnusedWarnings (a6989586621681211796 <=<@#@$$ a6989586621681211336 :: TyFun (a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (a6989586621681211796 <=<@#@$$ a6989586621681211336 :: TyFun (a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335) -> Type) (a6989586621681211797 :: a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (a6989586621681211796 <=<@#@$$ a6989586621681211336 :: TyFun (a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) (a6989586621681211336 ~> m6989586621681211333 c6989586621681211335) -> Type) (a6989586621681211797 :: a6989586621681211336 ~> m6989586621681211333 b6989586621681211334) = a6989586621681211796 <=<@#@$$$ a6989586621681211797 |
data (a6989586621681211796 :: (~>) b6989586621681211334 (m6989586621681211333 c6989586621681211335)) <=<@#@$$$ (a6989586621681211797 :: (~>) a6989586621681211336 (m6989586621681211333 b6989586621681211334)) :: (~>) a6989586621681211336 (m6989586621681211333 c6989586621681211335) infixr 1 Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (d1 <=<@#@$$$ d2 :: TyFun a (m c) -> Type) Source # | |
SuppressUnusedWarnings (a6989586621681211797 <=<@#@$$$ a6989586621681211796 :: TyFun a6989586621681211336 (m6989586621681211333 c6989586621681211335) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (a6989586621681211797 <=<@#@$$$ a6989586621681211796 :: TyFun a (m c) -> Type) (a6989586621681211798 :: a) Source # | |
data VoidSym0 :: forall a6989586621679714510 f6989586621679714509. (~>) (f6989586621679714509 a6989586621679714510) (f6989586621679714509 ()) Source #
Instances
SFunctor f => SingI (VoidSym0 :: TyFun (f a) (f ()) -> Type) Source # | |
SuppressUnusedWarnings (VoidSym0 :: TyFun (f6989586621679714509 a6989586621679714510) (f6989586621679714509 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Functor suppressUnusedWarnings :: () Source # | |
type Apply (VoidSym0 :: TyFun (f a) (f ()) -> Type) (a6989586621679714581 :: f a) Source # | |
type VoidSym1 (a6989586621679714581 :: f6989586621679714509 a6989586621679714510) = Void a6989586621679714581 Source #
data JoinSym0 :: forall a6989586621679545081 m6989586621679545080. (~>) (m6989586621679545080 (m6989586621679545080 a6989586621679545081)) (m6989586621679545080 a6989586621679545081) Source #
Instances
SMonad m => SingI (JoinSym0 :: TyFun (m (m a)) (m a) -> Type) Source # | |
SuppressUnusedWarnings (JoinSym0 :: TyFun (m6989586621679545080 (m6989586621679545080 a6989586621679545081)) (m6989586621679545080 a6989586621679545081) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (JoinSym0 :: TyFun (m (m a)) (m a) -> Type) (a6989586621679545479 :: m (m a)) Source # | |
type JoinSym1 (a6989586621679545479 :: m6989586621679545080 (m6989586621679545080 a6989586621679545081)) = Join a6989586621679545479 Source #
data MsumSym0 :: forall a6989586621680452652 m6989586621680452651 t6989586621680452650. (~>) (t6989586621680452650 (m6989586621680452651 a6989586621680452652)) (m6989586621680452651 a6989586621680452652) Source #
Instances
(SFoldable t, SMonadPlus m) => SingI (MsumSym0 :: TyFun (t (m a)) (m a) -> Type) Source # | |
SuppressUnusedWarnings (MsumSym0 :: TyFun (t6989586621680452650 (m6989586621680452651 a6989586621680452652)) (m6989586621680452651 a6989586621680452652) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (MsumSym0 :: TyFun (t (m a)) (m a) -> Type) (a6989586621680453253 :: t (m a)) Source # | |
type MsumSym1 (a6989586621680453253 :: t6989586621680452650 (m6989586621680452651 a6989586621680452652)) = Msum a6989586621680453253 Source #
data MfilterSym0 :: forall a6989586621681211304 m6989586621681211303. (~>) ((~>) a6989586621681211304 Bool) ((~>) (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304)) Source #
Instances
SMonadPlus m => SingI (MfilterSym0 :: TyFun (a ~> Bool) (m a ~> m a) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing MfilterSym0 Source # | |
SuppressUnusedWarnings (MfilterSym0 :: TyFun (a6989586621681211304 ~> Bool) (m6989586621681211303 a6989586621681211304 ~> m6989586621681211303 a6989586621681211304) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (MfilterSym0 :: TyFun (a6989586621681211304 ~> Bool) (m6989586621681211303 a6989586621681211304 ~> m6989586621681211303 a6989586621681211304) -> Type) (a6989586621681211639 :: a6989586621681211304 ~> Bool) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (MfilterSym0 :: TyFun (a6989586621681211304 ~> Bool) (m6989586621681211303 a6989586621681211304 ~> m6989586621681211303 a6989586621681211304) -> Type) (a6989586621681211639 :: a6989586621681211304 ~> Bool) = (MfilterSym1 a6989586621681211639 m6989586621681211303 :: TyFun (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304) -> Type) |
data MfilterSym1 (a6989586621681211639 :: (~>) a6989586621681211304 Bool) :: forall m6989586621681211303. (~>) (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304) Source #
Instances
(SMonadPlus m, SingI d) => SingI (MfilterSym1 d m :: TyFun (m a) (m a) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (MfilterSym1 d m) Source # | |
SuppressUnusedWarnings (MfilterSym1 a6989586621681211639 m6989586621681211303 :: TyFun (m6989586621681211303 a6989586621681211304) (m6989586621681211303 a6989586621681211304) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (MfilterSym1 a6989586621681211639 m :: TyFun (m a) (m a) -> Type) (a6989586621681211640 :: m a) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (MfilterSym1 a6989586621681211639 m :: TyFun (m a) (m a) -> Type) (a6989586621681211640 :: m a) = Mfilter a6989586621681211639 a6989586621681211640 |
type MfilterSym2 (a6989586621681211639 :: (~>) a6989586621681211304 Bool) (a6989586621681211640 :: m6989586621681211303 a6989586621681211304) = Mfilter a6989586621681211639 a6989586621681211640 Source #
data FilterMSym0 :: forall a6989586621681211342 m6989586621681211341. (~>) ((~>) a6989586621681211342 (m6989586621681211341 Bool)) ((~>) [a6989586621681211342] (m6989586621681211341 [a6989586621681211342])) Source #
Instances
SApplicative m => SingI (FilterMSym0 :: TyFun (a ~> m Bool) ([a] ~> m [a]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing FilterMSym0 Source # | |
SuppressUnusedWarnings (FilterMSym0 :: TyFun (a6989586621681211342 ~> m6989586621681211341 Bool) ([a6989586621681211342] ~> m6989586621681211341 [a6989586621681211342]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (FilterMSym0 :: TyFun (a6989586621681211342 ~> m6989586621681211341 Bool) ([a6989586621681211342] ~> m6989586621681211341 [a6989586621681211342]) -> Type) (a6989586621681211805 :: a6989586621681211342 ~> m6989586621681211341 Bool) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (FilterMSym0 :: TyFun (a6989586621681211342 ~> m6989586621681211341 Bool) ([a6989586621681211342] ~> m6989586621681211341 [a6989586621681211342]) -> Type) (a6989586621681211805 :: a6989586621681211342 ~> m6989586621681211341 Bool) = FilterMSym1 a6989586621681211805 |
data FilterMSym1 (a6989586621681211805 :: (~>) a6989586621681211342 (m6989586621681211341 Bool)) :: (~>) [a6989586621681211342] (m6989586621681211341 [a6989586621681211342]) Source #
Instances
(SApplicative m, SingI d) => SingI (FilterMSym1 d :: TyFun [a] (m [a]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (FilterMSym1 d) Source # | |
SuppressUnusedWarnings (FilterMSym1 a6989586621681211805 :: TyFun [a6989586621681211342] (m6989586621681211341 [a6989586621681211342]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (FilterMSym1 a6989586621681211805 :: TyFun [a] (m [a]) -> Type) (a6989586621681211806 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (FilterMSym1 a6989586621681211805 :: TyFun [a] (m [a]) -> Type) (a6989586621681211806 :: [a]) = FilterM a6989586621681211805 a6989586621681211806 |
type FilterMSym2 (a6989586621681211805 :: (~>) a6989586621681211342 (m6989586621681211341 Bool)) (a6989586621681211806 :: [a6989586621681211342]) = FilterM a6989586621681211805 a6989586621681211806 Source #
data MapAndUnzipMSym0 :: forall a6989586621681211330 b6989586621681211331 c6989586621681211332 m6989586621681211329. (~>) ((~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) ((~>) [a6989586621681211330] (m6989586621681211329 ([b6989586621681211331], [c6989586621681211332]))) Source #
Instances
SApplicative m => SingI (MapAndUnzipMSym0 :: TyFun (a ~> m (b, c)) ([a] ~> m ([b], [c])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad | |
SuppressUnusedWarnings (MapAndUnzipMSym0 :: TyFun (a6989586621681211330 ~> m6989586621681211329 (b6989586621681211331, c6989586621681211332)) ([a6989586621681211330] ~> m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (MapAndUnzipMSym0 :: TyFun (a6989586621681211330 ~> m6989586621681211329 (b6989586621681211331, c6989586621681211332)) ([a6989586621681211330] ~> m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])) -> Type) (a6989586621681211765 :: a6989586621681211330 ~> m6989586621681211329 (b6989586621681211331, c6989586621681211332)) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (MapAndUnzipMSym0 :: TyFun (a6989586621681211330 ~> m6989586621681211329 (b6989586621681211331, c6989586621681211332)) ([a6989586621681211330] ~> m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])) -> Type) (a6989586621681211765 :: a6989586621681211330 ~> m6989586621681211329 (b6989586621681211331, c6989586621681211332)) = MapAndUnzipMSym1 a6989586621681211765 |
data MapAndUnzipMSym1 (a6989586621681211765 :: (~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) :: (~>) [a6989586621681211330] (m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])) Source #
Instances
(SApplicative m, SingI d) => SingI (MapAndUnzipMSym1 d :: TyFun [a] (m ([b], [c])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (MapAndUnzipMSym1 d) Source # | |
SuppressUnusedWarnings (MapAndUnzipMSym1 a6989586621681211765 :: TyFun [a6989586621681211330] (m6989586621681211329 ([b6989586621681211331], [c6989586621681211332])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (MapAndUnzipMSym1 a6989586621681211765 :: TyFun [a] (m ([b], [c])) -> Type) (a6989586621681211766 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (MapAndUnzipMSym1 a6989586621681211765 :: TyFun [a] (m ([b], [c])) -> Type) (a6989586621681211766 :: [a]) = MapAndUnzipM a6989586621681211765 a6989586621681211766 |
type MapAndUnzipMSym2 (a6989586621681211765 :: (~>) a6989586621681211330 (m6989586621681211329 (b6989586621681211331, c6989586621681211332))) (a6989586621681211766 :: [a6989586621681211330]) = MapAndUnzipM a6989586621681211765 a6989586621681211766 Source #
data ZipWithMSym0 :: forall a6989586621681211326 b6989586621681211327 c6989586621681211328 m6989586621681211325. (~>) ((~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) ((~>) [a6989586621681211326] ((~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328]))) Source #
Instances
SApplicative m => SingI (ZipWithMSym0 :: TyFun (a ~> (b ~> m c)) ([a] ~> ([b] ~> m [c])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing ZipWithMSym0 Source # | |
SuppressUnusedWarnings (ZipWithMSym0 :: TyFun (a6989586621681211326 ~> (b6989586621681211327 ~> m6989586621681211325 c6989586621681211328)) ([a6989586621681211326] ~> ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328])) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithMSym0 :: TyFun (a6989586621681211326 ~> (b6989586621681211327 ~> m6989586621681211325 c6989586621681211328)) ([a6989586621681211326] ~> ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328])) -> Type) (a6989586621681211756 :: a6989586621681211326 ~> (b6989586621681211327 ~> m6989586621681211325 c6989586621681211328)) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithMSym0 :: TyFun (a6989586621681211326 ~> (b6989586621681211327 ~> m6989586621681211325 c6989586621681211328)) ([a6989586621681211326] ~> ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328])) -> Type) (a6989586621681211756 :: a6989586621681211326 ~> (b6989586621681211327 ~> m6989586621681211325 c6989586621681211328)) = ZipWithMSym1 a6989586621681211756 |
data ZipWithMSym1 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) :: (~>) [a6989586621681211326] ((~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328])) Source #
Instances
(SApplicative m, SingI d) => SingI (ZipWithMSym1 d :: TyFun [a] ([b] ~> m [c]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ZipWithMSym1 d) Source # | |
SuppressUnusedWarnings (ZipWithMSym1 a6989586621681211756 :: TyFun [a6989586621681211326] ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithMSym1 a6989586621681211756 :: TyFun [a6989586621681211326] ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328]) -> Type) (a6989586621681211757 :: [a6989586621681211326]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithMSym1 a6989586621681211756 :: TyFun [a6989586621681211326] ([b6989586621681211327] ~> m6989586621681211325 [c6989586621681211328]) -> Type) (a6989586621681211757 :: [a6989586621681211326]) = ZipWithMSym2 a6989586621681211756 a6989586621681211757 |
data ZipWithMSym2 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) (a6989586621681211757 :: [a6989586621681211326]) :: (~>) [b6989586621681211327] (m6989586621681211325 [c6989586621681211328]) Source #
Instances
(SApplicative m, SingI d1, SingI d2) => SingI (ZipWithMSym2 d1 d2 :: TyFun [b] (m [c]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ZipWithMSym2 d1 d2) Source # | |
SuppressUnusedWarnings (ZipWithMSym2 a6989586621681211757 a6989586621681211756 :: TyFun [b6989586621681211327] (m6989586621681211325 [c6989586621681211328]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithMSym2 a6989586621681211757 a6989586621681211756 :: TyFun [b] (m [c]) -> Type) (a6989586621681211758 :: [b]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithMSym2 a6989586621681211757 a6989586621681211756 :: TyFun [b] (m [c]) -> Type) (a6989586621681211758 :: [b]) = ZipWithM a6989586621681211757 a6989586621681211756 a6989586621681211758 |
type ZipWithMSym3 (a6989586621681211756 :: (~>) a6989586621681211326 ((~>) b6989586621681211327 (m6989586621681211325 c6989586621681211328))) (a6989586621681211757 :: [a6989586621681211326]) (a6989586621681211758 :: [b6989586621681211327]) = ZipWithM a6989586621681211756 a6989586621681211757 a6989586621681211758 Source #
data ZipWithM_Sym0 :: forall a6989586621681211322 b6989586621681211323 c6989586621681211324 m6989586621681211321. (~>) ((~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) ((~>) [a6989586621681211322] ((~>) [b6989586621681211323] (m6989586621681211321 ()))) Source #
Instances
SApplicative m => SingI (ZipWithM_Sym0 :: TyFun (a ~> (b ~> m c)) ([a] ~> ([b] ~> m ())) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing ZipWithM_Sym0 Source # | |
SuppressUnusedWarnings (ZipWithM_Sym0 :: TyFun (a6989586621681211322 ~> (b6989586621681211323 ~> m6989586621681211321 c6989586621681211324)) ([a6989586621681211322] ~> ([b6989586621681211323] ~> m6989586621681211321 ())) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithM_Sym0 :: TyFun (a6989586621681211322 ~> (b6989586621681211323 ~> m6989586621681211321 c6989586621681211324)) ([a6989586621681211322] ~> ([b6989586621681211323] ~> m6989586621681211321 ())) -> Type) (a6989586621681211747 :: a6989586621681211322 ~> (b6989586621681211323 ~> m6989586621681211321 c6989586621681211324)) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithM_Sym0 :: TyFun (a6989586621681211322 ~> (b6989586621681211323 ~> m6989586621681211321 c6989586621681211324)) ([a6989586621681211322] ~> ([b6989586621681211323] ~> m6989586621681211321 ())) -> Type) (a6989586621681211747 :: a6989586621681211322 ~> (b6989586621681211323 ~> m6989586621681211321 c6989586621681211324)) = ZipWithM_Sym1 a6989586621681211747 |
data ZipWithM_Sym1 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) :: (~>) [a6989586621681211322] ((~>) [b6989586621681211323] (m6989586621681211321 ())) Source #
Instances
(SApplicative m, SingI d) => SingI (ZipWithM_Sym1 d :: TyFun [a] ([b] ~> m ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ZipWithM_Sym1 d) Source # | |
SuppressUnusedWarnings (ZipWithM_Sym1 a6989586621681211747 :: TyFun [a6989586621681211322] ([b6989586621681211323] ~> m6989586621681211321 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithM_Sym1 a6989586621681211747 :: TyFun [a6989586621681211322] ([b6989586621681211323] ~> m6989586621681211321 ()) -> Type) (a6989586621681211748 :: [a6989586621681211322]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithM_Sym1 a6989586621681211747 :: TyFun [a6989586621681211322] ([b6989586621681211323] ~> m6989586621681211321 ()) -> Type) (a6989586621681211748 :: [a6989586621681211322]) = ZipWithM_Sym2 a6989586621681211747 a6989586621681211748 |
data ZipWithM_Sym2 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) (a6989586621681211748 :: [a6989586621681211322]) :: (~>) [b6989586621681211323] (m6989586621681211321 ()) Source #
Instances
(SApplicative m, SingI d1, SingI d2) => SingI (ZipWithM_Sym2 d1 d2 :: TyFun [b] (m ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ZipWithM_Sym2 d1 d2) Source # | |
SuppressUnusedWarnings (ZipWithM_Sym2 a6989586621681211748 a6989586621681211747 :: TyFun [b6989586621681211323] (m6989586621681211321 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ZipWithM_Sym2 a6989586621681211748 a6989586621681211747 :: TyFun [b] (m ()) -> Type) (a6989586621681211749 :: [b]) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ZipWithM_Sym2 a6989586621681211748 a6989586621681211747 :: TyFun [b] (m ()) -> Type) (a6989586621681211749 :: [b]) = ZipWithM_ a6989586621681211748 a6989586621681211747 a6989586621681211749 |
type ZipWithM_Sym3 (a6989586621681211747 :: (~>) a6989586621681211322 ((~>) b6989586621681211323 (m6989586621681211321 c6989586621681211324))) (a6989586621681211748 :: [a6989586621681211322]) (a6989586621681211749 :: [b6989586621681211323]) = ZipWithM_ a6989586621681211747 a6989586621681211748 a6989586621681211749 Source #
data FoldlMSym0 :: forall a6989586621680452681 b6989586621680452680 m6989586621680452679 t6989586621680452678. (~>) ((~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) ((~>) b6989586621680452680 ((~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680))) Source #
Instances
(SFoldable t, SMonad m) => SingI (FoldlMSym0 :: TyFun (b ~> (a ~> m b)) (b ~> (t a ~> m b)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable sing :: Sing FoldlMSym0 Source # | |
SuppressUnusedWarnings (FoldlMSym0 :: TyFun (b6989586621680452680 ~> (a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) (b6989586621680452680 ~> (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (FoldlMSym0 :: TyFun (b6989586621680452680 ~> (a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) (b6989586621680452680 ~> (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) -> Type) (a6989586621680453302 :: b6989586621680452680 ~> (a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) Source # | |
Defined in Data.Singletons.Prelude.Foldable type Apply (FoldlMSym0 :: TyFun (b6989586621680452680 ~> (a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) (b6989586621680452680 ~> (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) -> Type) (a6989586621680453302 :: b6989586621680452680 ~> (a6989586621680452681 ~> m6989586621680452679 b6989586621680452680)) = (FoldlMSym1 a6989586621680453302 t6989586621680452678 :: TyFun b6989586621680452680 (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680) -> Type) |
data FoldlMSym1 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) :: forall t6989586621680452678. (~>) b6989586621680452680 ((~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680)) Source #
Instances
(SFoldable t, SMonad m, SingI d) => SingI (FoldlMSym1 d t :: TyFun b (t a ~> m b) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable sing :: Sing (FoldlMSym1 d t) Source # | |
SuppressUnusedWarnings (FoldlMSym1 a6989586621680453302 t6989586621680452678 :: TyFun b6989586621680452680 (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (FoldlMSym1 a6989586621680453302 t6989586621680452678 :: TyFun b6989586621680452680 (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680) -> Type) (a6989586621680453303 :: b6989586621680452680) Source # | |
Defined in Data.Singletons.Prelude.Foldable type Apply (FoldlMSym1 a6989586621680453302 t6989586621680452678 :: TyFun b6989586621680452680 (t6989586621680452678 a6989586621680452681 ~> m6989586621680452679 b6989586621680452680) -> Type) (a6989586621680453303 :: b6989586621680452680) = (FoldlMSym2 a6989586621680453302 a6989586621680453303 t6989586621680452678 :: TyFun (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680) -> Type) |
data FoldlMSym2 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) (a6989586621680453303 :: b6989586621680452680) :: forall t6989586621680452678. (~>) (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680) Source #
Instances
(SFoldable t, SMonad m, SingI d1, SingI d2) => SingI (FoldlMSym2 d1 d2 t :: TyFun (t a) (m b) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable sing :: Sing (FoldlMSym2 d1 d2 t) Source # | |
SuppressUnusedWarnings (FoldlMSym2 a6989586621680453303 a6989586621680453302 t6989586621680452678 :: TyFun (t6989586621680452678 a6989586621680452681) (m6989586621680452679 b6989586621680452680) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Foldable suppressUnusedWarnings :: () Source # | |
type Apply (FoldlMSym2 a6989586621680453303 a6989586621680453302 t :: TyFun (t a) (m b) -> Type) (a6989586621680453304 :: t a) Source # | |
Defined in Data.Singletons.Prelude.Foldable type Apply (FoldlMSym2 a6989586621680453303 a6989586621680453302 t :: TyFun (t a) (m b) -> Type) (a6989586621680453304 :: t a) = FoldlM a6989586621680453303 a6989586621680453302 a6989586621680453304 |
type FoldlMSym3 (a6989586621680453302 :: (~>) b6989586621680452680 ((~>) a6989586621680452681 (m6989586621680452679 b6989586621680452680))) (a6989586621680453303 :: b6989586621680452680) (a6989586621680453304 :: t6989586621680452678 a6989586621680452681) = FoldlM a6989586621680453302 a6989586621680453303 a6989586621680453304 Source #
data ReplicateMSym0 :: forall a6989586621681211312 m6989586621681211311. (~>) Nat ((~>) (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312])) Source #
Instances
SApplicative m => SingI (ReplicateMSym0 :: TyFun Nat (m a ~> m [a]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad | |
SuppressUnusedWarnings (ReplicateMSym0 :: TyFun Nat (m6989586621681211311 a6989586621681211312 ~> m6989586621681211311 [a6989586621681211312]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ReplicateMSym0 :: TyFun Nat (m6989586621681211311 a6989586621681211312 ~> m6989586621681211311 [a6989586621681211312]) -> Type) (a6989586621681211704 :: Nat) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ReplicateMSym0 :: TyFun Nat (m6989586621681211311 a6989586621681211312 ~> m6989586621681211311 [a6989586621681211312]) -> Type) (a6989586621681211704 :: Nat) = (ReplicateMSym1 a6989586621681211704 a6989586621681211312 m6989586621681211311 :: TyFun (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312]) -> Type) |
data ReplicateMSym1 (a6989586621681211704 :: Nat) :: forall a6989586621681211312 m6989586621681211311. (~>) (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312]) Source #
Instances
(SApplicative m, SingI d) => SingI (ReplicateMSym1 d a m :: TyFun (m a) (m [a]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ReplicateMSym1 d a m) Source # | |
SuppressUnusedWarnings (ReplicateMSym1 a6989586621681211704 a6989586621681211312 m6989586621681211311 :: TyFun (m6989586621681211311 a6989586621681211312) (m6989586621681211311 [a6989586621681211312]) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ReplicateMSym1 a6989586621681211704 a m :: TyFun (m a) (m [a]) -> Type) (a6989586621681211705 :: m a) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ReplicateMSym1 a6989586621681211704 a m :: TyFun (m a) (m [a]) -> Type) (a6989586621681211705 :: m a) = ReplicateM a6989586621681211704 a6989586621681211705 |
type ReplicateMSym2 (a6989586621681211704 :: Nat) (a6989586621681211705 :: m6989586621681211311 a6989586621681211312) = ReplicateM a6989586621681211704 a6989586621681211705 Source #
data ReplicateM_Sym0 :: forall a6989586621681211310 m6989586621681211309. (~>) Nat ((~>) (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ())) Source #
Instances
SApplicative m => SingI (ReplicateM_Sym0 :: TyFun Nat (m a ~> m ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad | |
SuppressUnusedWarnings (ReplicateM_Sym0 :: TyFun Nat (m6989586621681211309 a6989586621681211310 ~> m6989586621681211309 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ReplicateM_Sym0 :: TyFun Nat (m6989586621681211309 a6989586621681211310 ~> m6989586621681211309 ()) -> Type) (a6989586621681211685 :: Nat) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ReplicateM_Sym0 :: TyFun Nat (m6989586621681211309 a6989586621681211310 ~> m6989586621681211309 ()) -> Type) (a6989586621681211685 :: Nat) = (ReplicateM_Sym1 a6989586621681211685 a6989586621681211310 m6989586621681211309 :: TyFun (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ()) -> Type) |
data ReplicateM_Sym1 (a6989586621681211685 :: Nat) :: forall a6989586621681211310 m6989586621681211309. (~>) (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ()) Source #
Instances
(SApplicative m, SingI d) => SingI (ReplicateM_Sym1 d a m :: TyFun (m a) (m ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (ReplicateM_Sym1 d a m) Source # | |
SuppressUnusedWarnings (ReplicateM_Sym1 a6989586621681211685 a6989586621681211310 m6989586621681211309 :: TyFun (m6989586621681211309 a6989586621681211310) (m6989586621681211309 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (ReplicateM_Sym1 a6989586621681211685 a m :: TyFun (m a) (m ()) -> Type) (a6989586621681211686 :: m a) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (ReplicateM_Sym1 a6989586621681211685 a m :: TyFun (m a) (m ()) -> Type) (a6989586621681211686 :: m a) = ReplicateM_ a6989586621681211685 a6989586621681211686 |
type ReplicateM_Sym2 (a6989586621681211685 :: Nat) (a6989586621681211686 :: m6989586621681211309 a6989586621681211310) = ReplicateM_ a6989586621681211685 a6989586621681211686 Source #
data GuardSym0 :: forall f6989586621679545047. (~>) Bool (f6989586621679545047 ()) Source #
Instances
SAlternative f => SingI (GuardSym0 :: TyFun Bool (f ()) -> Type) Source # | |
SuppressUnusedWarnings (GuardSym0 :: TyFun Bool (f6989586621679545047 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (GuardSym0 :: TyFun Bool (f6989586621679545047 ()) -> Type) (a6989586621679545216 :: Bool) Source # | |
data WhenSym0 :: forall f6989586621679545076. (~>) Bool ((~>) (f6989586621679545076 ()) (f6989586621679545076 ())) Source #
Instances
SApplicative f => SingI (WhenSym0 :: TyFun Bool (f () ~> f ()) -> Type) Source # | |
SuppressUnusedWarnings (WhenSym0 :: TyFun Bool (f6989586621679545076 () ~> f6989586621679545076 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (WhenSym0 :: TyFun Bool (f6989586621679545076 () ~> f6989586621679545076 ()) -> Type) (a6989586621679545464 :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal |
data WhenSym1 (a6989586621679545464 :: Bool) :: forall f6989586621679545076. (~>) (f6989586621679545076 ()) (f6989586621679545076 ()) Source #
Instances
(SApplicative f, SingI d) => SingI (WhenSym1 d f :: TyFun (f ()) (f ()) -> Type) Source # | |
SuppressUnusedWarnings (WhenSym1 a6989586621679545464 f6989586621679545076 :: TyFun (f6989586621679545076 ()) (f6989586621679545076 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (WhenSym1 a6989586621679545464 f :: TyFun (f ()) (f ()) -> Type) (a6989586621679545465 :: f ()) Source # | |
type WhenSym2 (a6989586621679545464 :: Bool) (a6989586621679545465 :: f6989586621679545076 ()) = When a6989586621679545464 a6989586621679545465 Source #
data UnlessSym0 :: forall f6989586621681211308. (~>) Bool ((~>) (f6989586621681211308 ()) (f6989586621681211308 ())) Source #
Instances
SApplicative f => SingI (UnlessSym0 :: TyFun Bool (f () ~> f ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing UnlessSym0 Source # | |
SuppressUnusedWarnings (UnlessSym0 :: TyFun Bool (f6989586621681211308 () ~> f6989586621681211308 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (UnlessSym0 :: TyFun Bool (f6989586621681211308 () ~> f6989586621681211308 ()) -> Type) (a6989586621681211676 :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (UnlessSym0 :: TyFun Bool (f6989586621681211308 () ~> f6989586621681211308 ()) -> Type) (a6989586621681211676 :: Bool) = (UnlessSym1 a6989586621681211676 f6989586621681211308 :: TyFun (f6989586621681211308 ()) (f6989586621681211308 ()) -> Type) |
data UnlessSym1 (a6989586621681211676 :: Bool) :: forall f6989586621681211308. (~>) (f6989586621681211308 ()) (f6989586621681211308 ()) Source #
Instances
(SApplicative f, SingI d) => SingI (UnlessSym1 d f :: TyFun (f ()) (f ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (UnlessSym1 d f) Source # | |
SuppressUnusedWarnings (UnlessSym1 a6989586621681211676 f6989586621681211308 :: TyFun (f6989586621681211308 ()) (f6989586621681211308 ()) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (UnlessSym1 a6989586621681211676 f :: TyFun (f ()) (f ()) -> Type) (a6989586621681211677 :: f ()) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply (UnlessSym1 a6989586621681211676 f :: TyFun (f ()) (f ()) -> Type) (a6989586621681211677 :: f ()) = Unless a6989586621681211676 a6989586621681211677 |
type UnlessSym2 (a6989586621681211676 :: Bool) (a6989586621681211677 :: f6989586621681211308 ()) = Unless a6989586621681211676 a6989586621681211677 Source #
data LiftMSym0 :: forall a16989586621679545074 m6989586621679545073 r6989586621679545075. (~>) ((~>) a16989586621679545074 r6989586621679545075) ((~>) (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075)) Source #
Instances
SMonad m => SingI (LiftMSym0 :: TyFun (a1 ~> r) (m a1 ~> m r) -> Type) Source # | |
SuppressUnusedWarnings (LiftMSym0 :: TyFun (a16989586621679545074 ~> r6989586621679545075) (m6989586621679545073 a16989586621679545074 ~> m6989586621679545073 r6989586621679545075) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftMSym0 :: TyFun (a16989586621679545074 ~> r6989586621679545075) (m6989586621679545073 a16989586621679545074 ~> m6989586621679545073 r6989586621679545075) -> Type) (a6989586621679545451 :: a16989586621679545074 ~> r6989586621679545075) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftMSym0 :: TyFun (a16989586621679545074 ~> r6989586621679545075) (m6989586621679545073 a16989586621679545074 ~> m6989586621679545073 r6989586621679545075) -> Type) (a6989586621679545451 :: a16989586621679545074 ~> r6989586621679545075) = (LiftMSym1 a6989586621679545451 m6989586621679545073 :: TyFun (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075) -> Type) |
data LiftMSym1 (a6989586621679545451 :: (~>) a16989586621679545074 r6989586621679545075) :: forall m6989586621679545073. (~>) (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075) Source #
Instances
(SMonad m, SingI d) => SingI (LiftMSym1 d m :: TyFun (m a1) (m r) -> Type) Source # | |
SuppressUnusedWarnings (LiftMSym1 a6989586621679545451 m6989586621679545073 :: TyFun (m6989586621679545073 a16989586621679545074) (m6989586621679545073 r6989586621679545075) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftMSym1 a6989586621679545451 m :: TyFun (m a1) (m r) -> Type) (a6989586621679545452 :: m a1) Source # | |
type LiftMSym2 (a6989586621679545451 :: (~>) a16989586621679545074 r6989586621679545075) (a6989586621679545452 :: m6989586621679545073 a16989586621679545074) = LiftM a6989586621679545451 a6989586621679545452 Source #
data LiftM2Sym0 :: forall a16989586621679545070 a26989586621679545071 m6989586621679545069 r6989586621679545072. (~>) ((~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) ((~>) (m6989586621679545069 a16989586621679545070) ((~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072))) Source #
Instances
SMonad m => SingI (LiftM2Sym0 :: TyFun (a1 ~> (a2 ~> r)) (m a1 ~> (m a2 ~> m r)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing LiftM2Sym0 Source # | |
SuppressUnusedWarnings (LiftM2Sym0 :: TyFun (a16989586621679545070 ~> (a26989586621679545071 ~> r6989586621679545072)) (m6989586621679545069 a16989586621679545070 ~> (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM2Sym0 :: TyFun (a16989586621679545070 ~> (a26989586621679545071 ~> r6989586621679545072)) (m6989586621679545069 a16989586621679545070 ~> (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072)) -> Type) (a6989586621679545425 :: a16989586621679545070 ~> (a26989586621679545071 ~> r6989586621679545072)) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM2Sym0 :: TyFun (a16989586621679545070 ~> (a26989586621679545071 ~> r6989586621679545072)) (m6989586621679545069 a16989586621679545070 ~> (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072)) -> Type) (a6989586621679545425 :: a16989586621679545070 ~> (a26989586621679545071 ~> r6989586621679545072)) = (LiftM2Sym1 a6989586621679545425 m6989586621679545069 :: TyFun (m6989586621679545069 a16989586621679545070) (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072) -> Type) |
data LiftM2Sym1 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) :: forall m6989586621679545069. (~>) (m6989586621679545069 a16989586621679545070) ((~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072)) Source #
Instances
(SMonad m, SingI d) => SingI (LiftM2Sym1 d m :: TyFun (m a1) (m a2 ~> m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM2Sym1 d m) Source # | |
SuppressUnusedWarnings (LiftM2Sym1 a6989586621679545425 m6989586621679545069 :: TyFun (m6989586621679545069 a16989586621679545070) (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM2Sym1 a6989586621679545425 m6989586621679545069 :: TyFun (m6989586621679545069 a16989586621679545070) (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072) -> Type) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM2Sym1 a6989586621679545425 m6989586621679545069 :: TyFun (m6989586621679545069 a16989586621679545070) (m6989586621679545069 a26989586621679545071 ~> m6989586621679545069 r6989586621679545072) -> Type) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) = LiftM2Sym2 a6989586621679545425 a6989586621679545426 |
data LiftM2Sym2 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) :: (~>) (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072) Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (LiftM2Sym2 d1 d2 :: TyFun (m a2) (m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM2Sym2 d1 d2) Source # | |
SuppressUnusedWarnings (LiftM2Sym2 a6989586621679545426 a6989586621679545425 :: TyFun (m6989586621679545069 a26989586621679545071) (m6989586621679545069 r6989586621679545072) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM2Sym2 a6989586621679545426 a6989586621679545425 :: TyFun (m a2) (m r) -> Type) (a6989586621679545427 :: m a2) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM2Sym2 a6989586621679545426 a6989586621679545425 :: TyFun (m a2) (m r) -> Type) (a6989586621679545427 :: m a2) = LiftM2 a6989586621679545426 a6989586621679545425 a6989586621679545427 |
type LiftM2Sym3 (a6989586621679545425 :: (~>) a16989586621679545070 ((~>) a26989586621679545071 r6989586621679545072)) (a6989586621679545426 :: m6989586621679545069 a16989586621679545070) (a6989586621679545427 :: m6989586621679545069 a26989586621679545071) = LiftM2 a6989586621679545425 a6989586621679545426 a6989586621679545427 Source #
data LiftM3Sym0 :: forall a16989586621679545065 a26989586621679545066 a36989586621679545067 m6989586621679545064 r6989586621679545068. (~>) ((~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) ((~>) (m6989586621679545064 a16989586621679545065) ((~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068)))) Source #
Instances
SMonad m => SingI (LiftM3Sym0 :: TyFun (a1 ~> (a2 ~> (a3 ~> r))) (m a1 ~> (m a2 ~> (m a3 ~> m r))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing LiftM3Sym0 Source # | |
SuppressUnusedWarnings (LiftM3Sym0 :: TyFun (a16989586621679545065 ~> (a26989586621679545066 ~> (a36989586621679545067 ~> r6989586621679545068))) (m6989586621679545064 a16989586621679545065 ~> (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM3Sym0 :: TyFun (a16989586621679545065 ~> (a26989586621679545066 ~> (a36989586621679545067 ~> r6989586621679545068))) (m6989586621679545064 a16989586621679545065 ~> (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068))) -> Type) (a6989586621679545383 :: a16989586621679545065 ~> (a26989586621679545066 ~> (a36989586621679545067 ~> r6989586621679545068))) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM3Sym0 :: TyFun (a16989586621679545065 ~> (a26989586621679545066 ~> (a36989586621679545067 ~> r6989586621679545068))) (m6989586621679545064 a16989586621679545065 ~> (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068))) -> Type) (a6989586621679545383 :: a16989586621679545065 ~> (a26989586621679545066 ~> (a36989586621679545067 ~> r6989586621679545068))) = (LiftM3Sym1 a6989586621679545383 m6989586621679545064 :: TyFun (m6989586621679545064 a16989586621679545065) (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068)) -> Type) |
data LiftM3Sym1 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) :: forall m6989586621679545064. (~>) (m6989586621679545064 a16989586621679545065) ((~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068))) Source #
Instances
(SMonad m, SingI d) => SingI (LiftM3Sym1 d m :: TyFun (m a1) (m a2 ~> (m a3 ~> m r)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM3Sym1 d m) Source # | |
SuppressUnusedWarnings (LiftM3Sym1 a6989586621679545383 m6989586621679545064 :: TyFun (m6989586621679545064 a16989586621679545065) (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM3Sym1 a6989586621679545383 m6989586621679545064 :: TyFun (m6989586621679545064 a16989586621679545065) (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068)) -> Type) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM3Sym1 a6989586621679545383 m6989586621679545064 :: TyFun (m6989586621679545064 a16989586621679545065) (m6989586621679545064 a26989586621679545066 ~> (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068)) -> Type) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) = LiftM3Sym2 a6989586621679545383 a6989586621679545384 |
data LiftM3Sym2 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) :: (~>) (m6989586621679545064 a26989586621679545066) ((~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068)) Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (LiftM3Sym2 d1 d2 :: TyFun (m a2) (m a3 ~> m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM3Sym2 d1 d2) Source # | |
SuppressUnusedWarnings (LiftM3Sym2 a6989586621679545384 a6989586621679545383 :: TyFun (m6989586621679545064 a26989586621679545066) (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM3Sym2 a6989586621679545384 a6989586621679545383 :: TyFun (m6989586621679545064 a26989586621679545066) (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068) -> Type) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM3Sym2 a6989586621679545384 a6989586621679545383 :: TyFun (m6989586621679545064 a26989586621679545066) (m6989586621679545064 a36989586621679545067 ~> m6989586621679545064 r6989586621679545068) -> Type) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) = LiftM3Sym3 a6989586621679545384 a6989586621679545383 a6989586621679545385 |
data LiftM3Sym3 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) :: (~>) (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3) => SingI (LiftM3Sym3 d1 d2 d3 :: TyFun (m a3) (m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM3Sym3 d1 d2 d3) Source # | |
SuppressUnusedWarnings (LiftM3Sym3 a6989586621679545385 a6989586621679545384 a6989586621679545383 :: TyFun (m6989586621679545064 a36989586621679545067) (m6989586621679545064 r6989586621679545068) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM3Sym3 a6989586621679545385 a6989586621679545384 a6989586621679545383 :: TyFun (m a3) (m r) -> Type) (a6989586621679545386 :: m a3) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM3Sym3 a6989586621679545385 a6989586621679545384 a6989586621679545383 :: TyFun (m a3) (m r) -> Type) (a6989586621679545386 :: m a3) = LiftM3 a6989586621679545385 a6989586621679545384 a6989586621679545383 a6989586621679545386 |
type LiftM3Sym4 (a6989586621679545383 :: (~>) a16989586621679545065 ((~>) a26989586621679545066 ((~>) a36989586621679545067 r6989586621679545068))) (a6989586621679545384 :: m6989586621679545064 a16989586621679545065) (a6989586621679545385 :: m6989586621679545064 a26989586621679545066) (a6989586621679545386 :: m6989586621679545064 a36989586621679545067) = LiftM3 a6989586621679545383 a6989586621679545384 a6989586621679545385 a6989586621679545386 Source #
data LiftM4Sym0 :: forall a16989586621679545059 a26989586621679545060 a36989586621679545061 a46989586621679545062 m6989586621679545058 r6989586621679545063. (~>) ((~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) ((~>) (m6989586621679545058 a16989586621679545059) ((~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063))))) Source #
Instances
SMonad m => SingI (LiftM4Sym0 :: TyFun (a1 ~> (a2 ~> (a3 ~> (a4 ~> r)))) (m a1 ~> (m a2 ~> (m a3 ~> (m a4 ~> m r)))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing LiftM4Sym0 Source # | |
SuppressUnusedWarnings (LiftM4Sym0 :: TyFun (a16989586621679545059 ~> (a26989586621679545060 ~> (a36989586621679545061 ~> (a46989586621679545062 ~> r6989586621679545063)))) (m6989586621679545058 a16989586621679545059 ~> (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM4Sym0 :: TyFun (a16989586621679545059 ~> (a26989586621679545060 ~> (a36989586621679545061 ~> (a46989586621679545062 ~> r6989586621679545063)))) (m6989586621679545058 a16989586621679545059 ~> (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)))) -> Type) (a6989586621679545322 :: a16989586621679545059 ~> (a26989586621679545060 ~> (a36989586621679545061 ~> (a46989586621679545062 ~> r6989586621679545063)))) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM4Sym0 :: TyFun (a16989586621679545059 ~> (a26989586621679545060 ~> (a36989586621679545061 ~> (a46989586621679545062 ~> r6989586621679545063)))) (m6989586621679545058 a16989586621679545059 ~> (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)))) -> Type) (a6989586621679545322 :: a16989586621679545059 ~> (a26989586621679545060 ~> (a36989586621679545061 ~> (a46989586621679545062 ~> r6989586621679545063)))) = (LiftM4Sym1 a6989586621679545322 m6989586621679545058 :: TyFun (m6989586621679545058 a16989586621679545059) (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063))) -> Type) |
data LiftM4Sym1 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) :: forall m6989586621679545058. (~>) (m6989586621679545058 a16989586621679545059) ((~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063)))) Source #
Instances
(SMonad m, SingI d) => SingI (LiftM4Sym1 d m :: TyFun (m a1) (m a2 ~> (m a3 ~> (m a4 ~> m r))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM4Sym1 d m) Source # | |
SuppressUnusedWarnings (LiftM4Sym1 a6989586621679545322 m6989586621679545058 :: TyFun (m6989586621679545058 a16989586621679545059) (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM4Sym1 a6989586621679545322 m6989586621679545058 :: TyFun (m6989586621679545058 a16989586621679545059) (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063))) -> Type) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM4Sym1 a6989586621679545322 m6989586621679545058 :: TyFun (m6989586621679545058 a16989586621679545059) (m6989586621679545058 a26989586621679545060 ~> (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063))) -> Type) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) = LiftM4Sym2 a6989586621679545322 a6989586621679545323 |
data LiftM4Sym2 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) :: (~>) (m6989586621679545058 a26989586621679545060) ((~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063))) Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (LiftM4Sym2 d1 d2 :: TyFun (m a2) (m a3 ~> (m a4 ~> m r)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM4Sym2 d1 d2) Source # | |
SuppressUnusedWarnings (LiftM4Sym2 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a26989586621679545060) (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM4Sym2 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a26989586621679545060) (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)) -> Type) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM4Sym2 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a26989586621679545060) (m6989586621679545058 a36989586621679545061 ~> (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063)) -> Type) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) = LiftM4Sym3 a6989586621679545323 a6989586621679545322 a6989586621679545324 |
data LiftM4Sym3 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) :: (~>) (m6989586621679545058 a36989586621679545061) ((~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063)) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3) => SingI (LiftM4Sym3 d1 d2 d3 :: TyFun (m a3) (m a4 ~> m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM4Sym3 d1 d2 d3) Source # | |
SuppressUnusedWarnings (LiftM4Sym3 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a36989586621679545061) (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM4Sym3 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a36989586621679545061) (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063) -> Type) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM4Sym3 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a36989586621679545061) (m6989586621679545058 a46989586621679545062 ~> m6989586621679545058 r6989586621679545063) -> Type) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) = LiftM4Sym4 a6989586621679545324 a6989586621679545323 a6989586621679545322 a6989586621679545325 |
data LiftM4Sym4 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) :: (~>) (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3, SingI d4) => SingI (LiftM4Sym4 d1 d2 d3 d4 :: TyFun (m a4) (m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM4Sym4 d1 d2 d3 d4) Source # | |
SuppressUnusedWarnings (LiftM4Sym4 a6989586621679545325 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m6989586621679545058 a46989586621679545062) (m6989586621679545058 r6989586621679545063) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM4Sym4 a6989586621679545325 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m a4) (m r) -> Type) (a6989586621679545326 :: m a4) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM4Sym4 a6989586621679545325 a6989586621679545324 a6989586621679545323 a6989586621679545322 :: TyFun (m a4) (m r) -> Type) (a6989586621679545326 :: m a4) = LiftM4 a6989586621679545325 a6989586621679545324 a6989586621679545323 a6989586621679545322 a6989586621679545326 |
type LiftM4Sym5 (a6989586621679545322 :: (~>) a16989586621679545059 ((~>) a26989586621679545060 ((~>) a36989586621679545061 ((~>) a46989586621679545062 r6989586621679545063)))) (a6989586621679545323 :: m6989586621679545058 a16989586621679545059) (a6989586621679545324 :: m6989586621679545058 a26989586621679545060) (a6989586621679545325 :: m6989586621679545058 a36989586621679545061) (a6989586621679545326 :: m6989586621679545058 a46989586621679545062) = LiftM4 a6989586621679545322 a6989586621679545323 a6989586621679545324 a6989586621679545325 a6989586621679545326 Source #
data LiftM5Sym0 :: forall a16989586621679545052 a26989586621679545053 a36989586621679545054 a46989586621679545055 a56989586621679545056 m6989586621679545051 r6989586621679545057. (~>) ((~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) ((~>) (m6989586621679545051 a16989586621679545052) ((~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)))))) Source #
Instances
SMonad m => SingI (LiftM5Sym0 :: TyFun (a1 ~> (a2 ~> (a3 ~> (a4 ~> (a5 ~> r))))) (m a1 ~> (m a2 ~> (m a3 ~> (m a4 ~> (m a5 ~> m r))))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing LiftM5Sym0 Source # | |
SuppressUnusedWarnings (LiftM5Sym0 :: TyFun (a16989586621679545052 ~> (a26989586621679545053 ~> (a36989586621679545054 ~> (a46989586621679545055 ~> (a56989586621679545056 ~> r6989586621679545057))))) (m6989586621679545051 a16989586621679545052 ~> (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym0 :: TyFun (a16989586621679545052 ~> (a26989586621679545053 ~> (a36989586621679545054 ~> (a46989586621679545055 ~> (a56989586621679545056 ~> r6989586621679545057))))) (m6989586621679545051 a16989586621679545052 ~> (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))))) -> Type) (a6989586621679545239 :: a16989586621679545052 ~> (a26989586621679545053 ~> (a36989586621679545054 ~> (a46989586621679545055 ~> (a56989586621679545056 ~> r6989586621679545057))))) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym0 :: TyFun (a16989586621679545052 ~> (a26989586621679545053 ~> (a36989586621679545054 ~> (a46989586621679545055 ~> (a56989586621679545056 ~> r6989586621679545057))))) (m6989586621679545051 a16989586621679545052 ~> (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))))) -> Type) (a6989586621679545239 :: a16989586621679545052 ~> (a26989586621679545053 ~> (a36989586621679545054 ~> (a46989586621679545055 ~> (a56989586621679545056 ~> r6989586621679545057))))) = (LiftM5Sym1 a6989586621679545239 m6989586621679545051 :: TyFun (m6989586621679545051 a16989586621679545052) (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)))) -> Type) |
data LiftM5Sym1 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) :: forall m6989586621679545051. (~>) (m6989586621679545051 a16989586621679545052) ((~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057))))) Source #
Instances
(SMonad m, SingI d) => SingI (LiftM5Sym1 d m :: TyFun (m a1) (m a2 ~> (m a3 ~> (m a4 ~> (m a5 ~> m r)))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM5Sym1 d m) Source # | |
SuppressUnusedWarnings (LiftM5Sym1 a6989586621679545239 m6989586621679545051 :: TyFun (m6989586621679545051 a16989586621679545052) (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym1 a6989586621679545239 m6989586621679545051 :: TyFun (m6989586621679545051 a16989586621679545052) (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)))) -> Type) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym1 a6989586621679545239 m6989586621679545051 :: TyFun (m6989586621679545051 a16989586621679545052) (m6989586621679545051 a26989586621679545053 ~> (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)))) -> Type) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) = LiftM5Sym2 a6989586621679545239 a6989586621679545240 |
data LiftM5Sym2 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) :: (~>) (m6989586621679545051 a26989586621679545053) ((~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)))) Source #
Instances
(SMonad m, SingI d1, SingI d2) => SingI (LiftM5Sym2 d1 d2 :: TyFun (m a2) (m a3 ~> (m a4 ~> (m a5 ~> m r))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM5Sym2 d1 d2) Source # | |
SuppressUnusedWarnings (LiftM5Sym2 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a26989586621679545053) (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym2 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a26989586621679545053) (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))) -> Type) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym2 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a26989586621679545053) (m6989586621679545051 a36989586621679545054 ~> (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057))) -> Type) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) = LiftM5Sym3 a6989586621679545240 a6989586621679545239 a6989586621679545241 |
data LiftM5Sym3 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) :: (~>) (m6989586621679545051 a36989586621679545054) ((~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057))) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3) => SingI (LiftM5Sym3 d1 d2 d3 :: TyFun (m a3) (m a4 ~> (m a5 ~> m r)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM5Sym3 d1 d2 d3) Source # | |
SuppressUnusedWarnings (LiftM5Sym3 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a36989586621679545054) (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym3 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a36989586621679545054) (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)) -> Type) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym3 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a36989586621679545054) (m6989586621679545051 a46989586621679545055 ~> (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057)) -> Type) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) = LiftM5Sym4 a6989586621679545241 a6989586621679545240 a6989586621679545239 a6989586621679545242 |
data LiftM5Sym4 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) :: (~>) (m6989586621679545051 a46989586621679545055) ((~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057)) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3, SingI d4) => SingI (LiftM5Sym4 d1 d2 d3 d4 :: TyFun (m a4) (m a5 ~> m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM5Sym4 d1 d2 d3 d4) Source # | |
SuppressUnusedWarnings (LiftM5Sym4 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a46989586621679545055) (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym4 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a46989586621679545055) (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057) -> Type) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym4 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a46989586621679545055) (m6989586621679545051 a56989586621679545056 ~> m6989586621679545051 r6989586621679545057) -> Type) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) = LiftM5Sym5 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 a6989586621679545243 |
data LiftM5Sym5 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) :: (~>) (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057) Source #
Instances
(SMonad m, SingI d1, SingI d2, SingI d3, SingI d4, SingI d5) => SingI (LiftM5Sym5 d1 d2 d3 d4 d5 :: TyFun (m a5) (m r) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal sing :: Sing (LiftM5Sym5 d1 d2 d3 d4 d5) Source # | |
SuppressUnusedWarnings (LiftM5Sym5 a6989586621679545243 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m6989586621679545051 a56989586621679545056) (m6989586621679545051 r6989586621679545057) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (LiftM5Sym5 a6989586621679545243 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m a5) (m r) -> Type) (a6989586621679545244 :: m a5) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (LiftM5Sym5 a6989586621679545243 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 :: TyFun (m a5) (m r) -> Type) (a6989586621679545244 :: m a5) = LiftM5 a6989586621679545243 a6989586621679545242 a6989586621679545241 a6989586621679545240 a6989586621679545239 a6989586621679545244 |
type LiftM5Sym6 (a6989586621679545239 :: (~>) a16989586621679545052 ((~>) a26989586621679545053 ((~>) a36989586621679545054 ((~>) a46989586621679545055 ((~>) a56989586621679545056 r6989586621679545057))))) (a6989586621679545240 :: m6989586621679545051 a16989586621679545052) (a6989586621679545241 :: m6989586621679545051 a26989586621679545053) (a6989586621679545242 :: m6989586621679545051 a36989586621679545054) (a6989586621679545243 :: m6989586621679545051 a46989586621679545055) (a6989586621679545244 :: m6989586621679545051 a56989586621679545056) = LiftM5 a6989586621679545239 a6989586621679545240 a6989586621679545241 a6989586621679545242 a6989586621679545243 a6989586621679545244 Source #
data ApSym0 :: forall a6989586621679545049 b6989586621679545050 m6989586621679545048. (~>) (m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) ((~>) (m6989586621679545048 a6989586621679545049) (m6989586621679545048 b6989586621679545050)) Source #
Instances
SMonad m => SingI (ApSym0 :: TyFun (m (a ~> b)) (m a ~> m b) -> Type) Source # | |
SuppressUnusedWarnings (ApSym0 :: TyFun (m6989586621679545048 (a6989586621679545049 ~> b6989586621679545050)) (m6989586621679545048 a6989586621679545049 ~> m6989586621679545048 b6989586621679545050) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (ApSym0 :: TyFun (m6989586621679545048 (a6989586621679545049 ~> b6989586621679545050)) (m6989586621679545048 a6989586621679545049 ~> m6989586621679545048 b6989586621679545050) -> Type) (a6989586621679545218 :: m6989586621679545048 (a6989586621679545049 ~> b6989586621679545050)) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal type Apply (ApSym0 :: TyFun (m6989586621679545048 (a6989586621679545049 ~> b6989586621679545050)) (m6989586621679545048 a6989586621679545049 ~> m6989586621679545048 b6989586621679545050) -> Type) (a6989586621679545218 :: m6989586621679545048 (a6989586621679545049 ~> b6989586621679545050)) = ApSym1 a6989586621679545218 |
data ApSym1 (a6989586621679545218 :: m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) :: (~>) (m6989586621679545048 a6989586621679545049) (m6989586621679545048 b6989586621679545050) Source #
Instances
(SMonad m, SingI d) => SingI (ApSym1 d :: TyFun (m a) (m b) -> Type) Source # | |
SuppressUnusedWarnings (ApSym1 a6989586621679545218 :: TyFun (m6989586621679545048 a6989586621679545049) (m6989586621679545048 b6989586621679545050) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad.Internal suppressUnusedWarnings :: () Source # | |
type Apply (ApSym1 a6989586621679545218 :: TyFun (m a) (m b) -> Type) (a6989586621679545219 :: m a) Source # | |
type ApSym2 (a6989586621679545218 :: m6989586621679545048 ((~>) a6989586621679545049 b6989586621679545050)) (a6989586621679545219 :: m6989586621679545048 a6989586621679545049) = Ap a6989586621679545218 a6989586621679545219 Source #
data (<$!>@#@$) :: forall a6989586621681211306 b6989586621681211307 m6989586621681211305. (~>) ((~>) a6989586621681211306 b6989586621681211307) ((~>) (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307)) infixl 4 Source #
Instances
SMonad m => SingI ((<$!>@#@$) :: TyFun (a ~> b) (m a ~> m b) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad sing :: Sing (<$!>@#@$) Source # | |
SuppressUnusedWarnings ((<$!>@#@$) :: TyFun (a6989586621681211306 ~> b6989586621681211307) (m6989586621681211305 a6989586621681211306 ~> m6989586621681211305 b6989586621681211307) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply ((<$!>@#@$) :: TyFun (a6989586621681211306 ~> b6989586621681211307) (m6989586621681211305 a6989586621681211306 ~> m6989586621681211305 b6989586621681211307) -> Type) (a6989586621681211659 :: a6989586621681211306 ~> b6989586621681211307) Source # | |
Defined in Data.Singletons.Prelude.Monad type Apply ((<$!>@#@$) :: TyFun (a6989586621681211306 ~> b6989586621681211307) (m6989586621681211305 a6989586621681211306 ~> m6989586621681211305 b6989586621681211307) -> Type) (a6989586621681211659 :: a6989586621681211306 ~> b6989586621681211307) = (a6989586621681211659 <$!>@#@$$ m6989586621681211305 :: TyFun (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307) -> Type) |
data (<$!>@#@$$) (a6989586621681211659 :: (~>) a6989586621681211306 b6989586621681211307) :: forall m6989586621681211305. (~>) (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307) infixl 4 Source #
Instances
(SMonad m, SingI d) => SingI (d <$!>@#@$$ m :: TyFun (m a) (m b) -> Type) Source # | |
SuppressUnusedWarnings (a6989586621681211659 <$!>@#@$$ m6989586621681211305 :: TyFun (m6989586621681211305 a6989586621681211306) (m6989586621681211305 b6989586621681211307) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Monad suppressUnusedWarnings :: () Source # | |
type Apply (a6989586621681211659 <$!>@#@$$ m :: TyFun (m a) (m b) -> Type) (a6989586621681211660 :: m a) Source # | |
type (<$!>@#@$$$) (a6989586621681211659 :: (~>) a6989586621681211306 b6989586621681211307) (a6989586621681211660 :: m6989586621681211305 a6989586621681211306) = (<$!>) a6989586621681211659 a6989586621681211660 Source #