Mercurial > gui
view sourceL.urs @ 23:7c734edc6301
Merge from Adam.
author | Karn Kallio <kkallio@eka> |
---|---|
date | Sat, 24 Sep 2011 18:55:27 -0430 |
parents | 8300d5f0dc19 |
children |
line wrap: on
line source
(* Reactive sources that accept change listeners *) con t :: Type -> Type val create : a ::: Type -> a -> transaction (t a) val onChange : a ::: Type -> t a -> (a -> transaction {}) -> transaction {} val set : a ::: Type -> t a -> a -> transaction {} val get : a ::: Type -> t a -> transaction a val value : a ::: Type -> t a -> signal a