comparison lib/ur/basis.urs @ 670:f73913d97a40

Proper recv
author Adam Chlipala <adamc@hcoop.net>
date Sun, 22 Mar 2009 16:03:45 -0400
parents b0c1a46b1f15
children e0c186464612
comparison
equal deleted inserted replaced
669:f68eee90dbcf 670:f73913d97a40
458 458
459 con channel :: Type -> Type 459 con channel :: Type -> Type
460 val channel : t ::: Type -> transaction (channel t) 460 val channel : t ::: Type -> transaction (channel t)
461 val subscribe : t ::: Type -> channel t -> transaction unit 461 val subscribe : t ::: Type -> channel t -> transaction unit
462 val send : t ::: Type -> channel t -> t -> transaction unit 462 val send : t ::: Type -> channel t -> t -> transaction unit
463 val recv : t ::: Type -> channel t -> transaction t