annotate lib/ur/option.urs @ 1272:56bd4a4f6e66

Some serious bug-fix work to get HTML example to compile; this includes fixing a bug with 'val' patterns in Unnest and the need for more local reduction in Especialize
author Adam Chlipala <adamc@hcoop.net>
date Thu, 03 Jun 2010 13:04:37 -0400
parents 757dbac0454d
children a99b743a3087
rev   line source
adamc@841 1 datatype t = datatype Basis.option
adamc@841 2
adamc@846 3 val eq : a ::: Type -> eq a -> eq (t a)
adamc@961 4 val ord : a ::: Type -> ord a -> ord (t a)
adamc@846 5
adamc@944 6 val isNone : a ::: Type -> t a -> bool
adamc@841 7 val isSome : a ::: Type -> t a -> bool
adamc@844 8
adamc@844 9 val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b
adamc@846 10 val bind : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> t b
adamc@1068 11
adamc@1068 12 val get : a ::: Type -> a -> option a -> a