1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Give fixity & precedence for :<-.

This commit is contained in:
Rob Rix 2019-07-19 15:25:33 -04:00
parent 38efb33327
commit ef24642f26
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -150,6 +150,8 @@ infixr 1 >>>=
data a :<- b = a :<- b
deriving (Eq, Ord, Show)
infix 2 :<-
lam :: (Eq a, Carrier sig m, Member Core sig) => Named a -> m a -> m a
lam (Named u n) b = send (Lam (Named u (bind1 n b)))