summaryrefslogtreecommitdiff
path: root/demo/more/dlist.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-09-19 14:21:25 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-09-19 14:21:25 -0400
commit19c729dcf5854c528053d71a9c9c38d01d2ac923 (patch)
tree0f7d66a99a62a66dbf3199febbcac8be00eb0650 /demo/more/dlist.urs
parentea30827e1977b1d1d028aa7701519bf95b976a3a (diff)
Paging mostly working; just need to get it working properly with filtering
Diffstat (limited to 'demo/more/dlist.urs')
-rw-r--r--demo/more/dlist.urs1
1 files changed, 1 insertions, 0 deletions
diff --git a/demo/more/dlist.urs b/demo/more/dlist.urs
index 4da61863..6918fdc8 100644
--- a/demo/more/dlist.urs
+++ b/demo/more/dlist.urs
@@ -8,6 +8,7 @@ val replace : t ::: Type -> dlist t -> list t -> transaction unit
val delete : position -> transaction unit
val elements : t ::: Type -> dlist t -> signal (list t)
+val size : t ::: Type -> dlist t -> signal int
val foldl : t ::: Type -> acc ::: Type -> (t -> acc -> signal acc) -> acc -> dlist t -> signal acc
val render : ctx ::: {Unit} -> [ctx ~ body] => t ::: Type