mirror of
https://github.com/github/semantic.git
synced 2024-12-25 16:02:43 +03:00
Use the smart constructor when binding.
This commit is contained in:
parent
901e0172df
commit
383342bf9c
@ -90,7 +90,7 @@ instance Applicative Core where
|
||||
(<*>) = ap
|
||||
|
||||
instance Monad Core where
|
||||
a >>= f = gfold id (Core . Let) (fmap Core . (:>>)) (Core . Lam) (fmap Core . (:$)) (Core Unit) (Core . Bool) (\ c t e -> Core (If c t e)) (Core . String) (Core . Load) (fmap Core . Edge) (Core Frame) (fmap Core . (:.)) (fmap Core . (:=)) (fmap Core . Ann) pure (f <$> a)
|
||||
a >>= f = gfold id let' (>>>) (Core . Lam) ($$) unit bool if' string load edge frame (...) (.=) (fmap Core . Ann) pure (f <$> a)
|
||||
|
||||
|
||||
let' :: Name -> Core a
|
||||
|
Loading…
Reference in New Issue
Block a user