basic hierarchy in place

This commit is contained in:
Stephen Diehl
2016-12-10 12:46:48 +00:00
parent c28fa6b00c
commit b32c80d0bb
11 changed files with 261 additions and 146 deletions
-4
View File
@@ -29,10 +29,6 @@ class Functor f => Applicative (f :: * -> *) where
(<*) :: f a -> f b -> f a
```
```haskell
(<$>) :: Functor f => (a -> b) -> f a -> f b
```
```haskell
orAlt :: (Alternative f, Monoid a) => f a -> f a
```