Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Documentation
s :: r h b -> r (a, h) b Source #
abs :: r (a, h) b -> r h (a -> b) Source #
app :: r h (a -> b) -> r h a -> r h b Source #
hoas :: (r (a, h) a -> r (a, h) b) -> r h (a -> b) Source #
We use a variant of HOAS so it can be compile to DBI, which is more compositional (No Negative Occurence). It require explicit lifting of variables. Use lam to do automatic lifting of variables.
com :: r h ((b -> c) -> (a -> b) -> a -> c) Source #
flip :: r h ((a -> b -> c) -> b -> a -> c) Source #
const :: r h (a -> b -> a) Source #
scomb :: r h ((a -> b -> c) -> (a -> b) -> a -> c) Source #
return :: Applicative r a => r h (x -> a x) Source #
bimap3 :: (BiFunctor * r p, DBI r) => r h (a -> b) -> r h (c -> d) -> r h (p a c) -> r h (p b d) Source #
class Functor r a => Applicative r a where Source #
Applicative Eval IO Source # | |
Applicative Show x Source # | |
Applicative Size x Source # | |
SubL c IO => Applicative (Term c) IO Source # | |
Applicative r x => Applicative (UnHOAS r) x Source # | |
(Prod r, Applicative r m) => Applicative (UnLiftEnv r) m Source # | |
(Prod r, Applicative r x) => Applicative (ImpW r) x Source # | |
class Applicative r m => Monad r m where Source #
lam :: forall repr a b h. DBI repr => ((forall k. NT repr (a, h) k => repr k a) -> repr (a, h) b) -> repr h (a -> b) Source #
lam2 :: forall repr a b c h. DBI repr => ((forall k. NT repr (a, h) k => repr k a) -> (forall k. NT repr (b, (a, h)) k => repr k b) -> repr (b, (a, h)) c) -> repr h (a -> b -> c) Source #
lam3 :: (NT * * repr (a, (b1, (a1, h))) k, NT * * repr (b1, (a1, h)) k1, NT * * repr (a1, h) k2, DBI repr) => (repr k2 a1 -> repr k1 b1 -> repr k a -> repr (a, (b1, (a1, h))) b) -> repr h (a1 -> b1 -> a -> b) Source #
lam4 :: (NT * * repr (a, (a1, (b1, (a2, h)))) k, NT * * repr (a2, h) k3, NT * * repr (b1, (a2, h)) k2, NT * * repr (a1, (b1, (a2, h))) k1, DBI repr) => (repr k3 a2 -> repr k2 b1 -> repr k1 a1 -> repr k a -> repr (a, (a1, (b1, (a2, h)))) b) -> repr h (a2 -> b1 -> a1 -> a -> b) Source #
app4 :: DBI r => r h (a3 -> a2 -> a1 -> a -> b) -> r h a3 -> r h a2 -> r h a1 -> r h a -> r h b Source #
app5 :: DBI r => r h (a4 -> a3 -> a2 -> a1 -> a -> b) -> r h a4 -> r h a3 -> r h a2 -> r h a1 -> r h a -> r h b Source #
module DDF.ImportMeta