comparison lib/ur/option.ur @ 841:44c2c089ca15

Start of Option; Basis.current; fix missed cases in Jscomp.isNullable
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Jun 2009 11:13:18 -0400
parents
children 74a1e3bdf430
comparison
equal deleted inserted replaced
840:e4a02e4fa35c 841:44c2c089ca15
1 datatype t = datatype Basis.option
2
3 fun isSome [a] x =
4 case x of
5 None => False
6 | Some _ => True