comparison lib/ur/basis.urs @ 701:f963356b53fd

Update the manual
author Adam Chlipala <adamc@hcoop.net>
date Sun, 05 Apr 2009 12:37:38 -0400
parents 500e93aa436f
children 70cbdcf5989b
comparison
equal deleted inserted replaced
700:db6ab16cd8f3 701:f963356b53fd
111 111
112 (** Channels *) 112 (** Channels *)
113 113
114 con channel :: Type -> Type 114 con channel :: Type -> Type
115 val channel : t ::: Type -> transaction (channel t) 115 val channel : t ::: Type -> transaction (channel t)
116 val subscribe : t ::: Type -> channel t -> transaction unit
117 val send : t ::: Type -> channel t -> t -> transaction unit 116 val send : t ::: Type -> channel t -> t -> transaction unit
118 val recv : t ::: Type -> channel t -> transaction t 117 val recv : t ::: Type -> channel t -> transaction t
119 118
120 type client 119 type client
121 val self : transaction client 120 val self : transaction client