view demo/more/dlist.urs @ 1965:126d24ef6678

Turn off GCC's fancy %n checking, because the performance cost is too high
author Adam Chlipala <adam@chlipala.net>
date Fri, 07 Feb 2014 18:34:17 -0500
parents 68429cfce8db
children
line wrap: on
line source
con dlist :: Type -> Type
type position

val create : t ::: Type -> transaction (dlist t)
val clear : t ::: Type -> dlist t -> transaction unit
val append : t ::: Type -> dlist t -> t -> transaction position
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 numPassing : t ::: Type -> (t -> signal bool) -> dlist t -> signal int
val foldl : t ::: Type -> acc ::: Type -> (t -> acc -> signal acc) -> acc -> dlist t -> signal acc

val render : ctx ::: {Unit} -> [ctx ~ [Dyn]] => t ::: Type
             -> (t -> position -> xml (ctx ++ [Dyn]) [] [])
             -> {StartPosition : signal (option int),
                 MaxLength : signal (option int),
                 Filter : t -> signal bool,
                 Sort : signal (option (t -> t -> signal bool)) (* <= *)}
             -> dlist t
             -> xml (ctx ++ [Dyn]) [] []