diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-03 14:57:33 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-03 14:57:33 -0400 |
commit | e1618fb012b5926889d80893c9ac4ce08838519d (patch) | |
tree | 46b157b5c6fb6967e1ab4809f94a6d6505de7411 /lib/ur/top.urs | |
parent | ddac92a3d792b7e7342e4003862cd5ff5c1f0ab8 (diff) |
outer demo
Diffstat (limited to 'lib/ur/top.urs')
-rw-r--r-- | lib/ur/top.urs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ur/top.urs b/lib/ur/top.urs index 60b6dac2..4ed64075 100644 --- a/lib/ur/top.urs +++ b/lib/ur/top.urs @@ -39,6 +39,9 @@ val ex : tf :: (Type -> Type) -> choice :: Type -> tf choice -> ex tf val compose : t1 ::: Type -> t2 ::: Type -> t3 ::: Type -> (t2 -> t3) -> (t1 -> t2) -> (t1 -> t3) +val show_option : t ::: Type -> show t -> show (option t) +val read_option : t ::: Type -> read t -> read (option t) + val txt : t ::: Type -> ctx ::: {Unit} -> use ::: {Type} -> show t -> t -> xml ctx use [] |