Mercurial > urweb
comparison demo/more/dlist.urs @ 952:07569af40069
Insert dummy Sort parameter
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 17 Sep 2009 14:42:02 -0400 |
parents | 103ac1792c41 |
children | 2a50da66ffd8 |
comparison
equal
deleted
inserted
replaced
951:103ac1792c41 | 952:07569af40069 |
---|---|
8 val elements : t ::: Type -> dlist t -> signal (list t) | 8 val elements : t ::: Type -> dlist t -> signal (list t) |
9 val foldl : t ::: Type -> acc ::: Type -> (t -> acc -> signal acc) -> acc -> dlist t -> signal acc | 9 val foldl : t ::: Type -> acc ::: Type -> (t -> acc -> signal acc) -> acc -> dlist t -> signal acc |
10 | 10 |
11 val render : ctx ::: {Unit} -> [ctx ~ body] => t ::: Type | 11 val render : ctx ::: {Unit} -> [ctx ~ body] => t ::: Type |
12 -> (t -> position -> xml (ctx ++ body) [] []) | 12 -> (t -> position -> xml (ctx ++ body) [] []) |
13 -> {Filter : t -> signal bool} | 13 -> {Filter : t -> signal bool, |
14 Sort : signal (option (t -> t -> signal bool)) (* <= *)} | |
14 -> dlist t | 15 -> dlist t |
15 -> xml (ctx ++ body) [] [] | 16 -> xml (ctx ++ body) [] [] |