2020-05-18 15:59:07 +03:00
|
|
|
module Control.Monad.Trans
|
|
|
|
|
2021-06-09 01:05:10 +03:00
|
|
|
%default total
|
|
|
|
|
2020-05-18 15:59:07 +03:00
|
|
|
public export
|
2020-12-11 14:58:26 +03:00
|
|
|
interface MonadTrans t where
|
2020-05-18 15:59:07 +03:00
|
|
|
lift : Monad m => m a -> t m a
|