comparison lib/ur/list.urs @ 796:6271f0e3c272

Fix a nasty binding bug in CoreUtil
author Adam Chlipala <adamc@hcoop.net>
date Thu, 14 May 2009 09:11:58 -0400
parents dc3fc3f3b834
children e92cfac1608f
comparison
equal deleted inserted replaced
795:b87e71e45536 796:6271f0e3c272
4 4
5 val rev : a ::: Type -> t a -> t a 5 val rev : a ::: Type -> t a -> t a
6 6
7 val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b 7 val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b
8 8
9 val mapX : a ::: Type -> ctx ::: {Unit} -> (a -> xml ctx [] []) -> t a -> xml ctx [] []