annotate demo/more/checkGroup.urs @ 1148:a48966743c37

AM_INIT_AUTOMAKE with no-define (to fix some NetBSD and OS X problems)
author Adam Chlipala <adamc@hcoop.net>
date Sat, 06 Feb 2010 13:27:05 -0500
parents 7facf72aaf0a
children
rev   line source
adamc@1025 1 con t :: {Unit} -> Type -> Type
adamc@1025 2
adamc@1025 3 val create : ctx ::: {Unit} -> data ::: Type -> list (data * xml ctx [] [] * bool) -> transaction (t ctx data)
adamc@1025 4 val render : ctx ::: {Unit} -> data ::: Type -> [[Body] ~ ctx] => t ([Body] ++ ctx) data -> xml ([Body] ++ ctx) [] []
adamc@1025 5 val selected : ctx ::: {Unit} -> data ::: Type -> t ctx data -> signal (list data)