annotate sourceL.urs @ 25:a037ed3854e3

Change time format to work portably in JavaScript
author Adam Chlipala <adam@chlipala.net>
date Sun, 04 Dec 2011 16:33:48 -0500
parents 8300d5f0dc19
children
rev   line source
adam@15 1 (* Reactive sources that accept change listeners *)
kkallio@14 2
adam@15 3 con t :: Type -> Type
kkallio@14 4
adam@15 5 val create : a ::: Type -> a -> transaction (t a)
kkallio@14 6
adam@15 7 val onChange : a ::: Type -> t a -> (a -> transaction {}) -> transaction {}
kkallio@14 8
adam@15 9 val set : a ::: Type -> t a -> a -> transaction {}
adam@15 10 val get : a ::: Type -> t a -> transaction a
adam@15 11 val value : a ::: Type -> t a -> signal a