aboutsummaryrefslogtreecommitdiffhomepage
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
commit142e0b28763660019a6fc0fc4a9383fb43b77407 (patch)
tree0f7d66a99a62a66dbf3199febbcac8be00eb0650 /demo/more/dlist.urs
parentc9c3eaa4c489077ef0199eacc16674b328348734 (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