log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/pprint.ur @ 1727:318ba997a149
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Omit unnecessary parens around arrows in pretty-printing
author
Adam Chlipala <adam@chlipala.net>
date
Fri, 27 Apr 2012 07:35:59 -0400
parents
children
rev
line source
adam@1727
1
fun isNone [a] (x : option a) =
adam@1727
2
case x of
adam@1727
3
None => True
adam@1727
4
| Some _ => False