1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00
This commit is contained in:
Rob Rix 2017-12-20 17:25:52 -05:00
parent 3dd17d794c
commit 9aa0ae2f32

View File

@ -19,6 +19,8 @@ data Type
| TArr [Type] -- ^ N-ary function types?
deriving (Eq, Ord, Show)
-- TODO: Do we need both TArr and :->?
-- | Unify two 'Type's.
unify :: MonadFail m => Type -> Type -> m Type