Created
October 21, 2019 17:10
-
-
Save MarcelineVQ/621aa33303366a08a0c3fe5383521eca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mutual | |
| data Trampoline : (m : Type -> Type) -> (r : Type) -> Type where | |
| MkTram : m (TrampOneOR m r) -> Trampoline m r | |
| data TrampOneOR : (m : Type -> Type) -> (r : Type) -> Type where | |
| Loft : Trampoline m r -> TrampOneOR m r | |
| Roght : r -> TrampOneOR m r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment