File: MonadTrans.v

package info (click to toggle)
coq-ext-lib 0.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 808 kB
  • sloc: makefile: 44; python: 31; sh: 4; lisp: 3
file content (6 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
Require Import ExtLib.Structures.Monad.

Set Implicit Arguments.

Class MonadT (m : Type -> Type) (mt : Type -> Type) : Type :=
{ lift : forall {t}, mt t -> m t }.