aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/list.urs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur/list.urs')
-rw-r--r--lib/ur/list.urs8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/ur/list.urs b/lib/ur/list.urs
new file mode 100644
index 00000000..879648ea
--- /dev/null
+++ b/lib/ur/list.urs
@@ -0,0 +1,8 @@
+datatype t = datatype Basis.list
+
+val show : a ::: Type -> show a -> show (list a)
+
+val rev : a ::: Type -> t a -> t a
+
+val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b
+