comparison lib/ur/top.urs @ 1649:9253765d7724

Rename [Top.id] to avoid clash with [Basis.id]
author Adam Chlipala <adam@chlipala.net>
date Thu, 29 Dec 2011 14:12:03 -0500
parents aa0c6382aa57
children 6bc2a8cb3a67
comparison
equal deleted inserted replaced
1648:bd7edca0aec1 1649:9253765d7724
20 20
21 21
22 val not : bool -> bool 22 val not : bool -> bool
23 23
24 (* Type-level identity function *) 24 (* Type-level identity function *)
25 con id = K ==> fn t :: K => t 25 con ident = K ==> fn t :: K => t
26 26
27 (* Type-level function which yields the value-level record 27 (* Type-level function which yields the value-level record
28 described by the given type-level record *) 28 described by the given type-level record *)
29 con record = fn t :: {Type} => $t 29 con record = fn t :: {Type} => $t
30 30