|
228 | 228 | ### Types |
229 | 229 |
|
230 | 230 | newtype ContT r m a where |
231 | | - ContT :: (a -> m r) -> m r -> ContT r m a |
| 231 | + ContT :: ((a -> m r) -> m r) -> ContT r m a |
232 | 232 |
|
233 | 233 |
|
234 | 234 | ### Type Class Instances |
|
339 | 339 | runErrorT :: forall e m a. ErrorT e m a -> m (Either e a) |
340 | 340 |
|
341 | 341 |
|
342 | | -## Module Control.Monad.Identity |
343 | | - |
344 | | -### Types |
345 | | - |
346 | | - newtype Identity a where |
347 | | - Identity :: a -> Identity a |
348 | | - |
349 | | - |
350 | | -### Type Class Instances |
351 | | - |
352 | | - instance applicativeIdentity :: Applicative Identity |
353 | | - |
354 | | - instance applyIdentity :: Apply Identity |
355 | | - |
356 | | - instance bindIdentity :: Bind Identity |
357 | | - |
358 | | - instance comonadIdentity :: Comonad Identity |
359 | | - |
360 | | - instance extendIdentity :: Extend Identity |
361 | | - |
362 | | - instance functorIdentity :: Functor Identity |
363 | | - |
364 | | - instance monadIdentity :: Monad Identity |
365 | | - |
366 | | - |
367 | | -### Values |
368 | | - |
369 | | - runIdentity :: forall a. Identity a -> a |
370 | | - |
371 | | - |
372 | 342 | ## Module Control.Monad.Maybe.Trans |
373 | 343 |
|
374 | 344 | ### Types |
|
478 | 448 | ### Types |
479 | 449 |
|
480 | 450 | newtype RWST r w s m a where |
481 | | - RWST :: r -> s -> m (See s a w) -> RWST r w s m a |
| 451 | + RWST :: (r -> s -> m (See s a w)) -> RWST r w s m a |
482 | 452 |
|
483 | 453 | type See s a w = { log :: w, result :: a, state :: s } |
484 | 454 |
|
|
565 | 535 | ### Types |
566 | 536 |
|
567 | 537 | newtype ReaderT r m a where |
568 | | - ReaderT :: r -> m a -> ReaderT r m a |
| 538 | + ReaderT :: (r -> m a) -> ReaderT r m a |
569 | 539 |
|
570 | 540 |
|
571 | 541 | ### Type Class Instances |
|
667 | 637 | ### Types |
668 | 638 |
|
669 | 639 | newtype StateT s m a where |
670 | | - StateT :: s -> m (Tuple a s) -> StateT s m a |
| 640 | + StateT :: (s -> m (Tuple a s)) -> StateT s m a |
671 | 641 |
|
672 | 642 |
|
673 | 643 | ### Type Class Instances |
|
0 commit comments