Mercurial > urweb
view lib/ur/option.urs @ 1147:92f37d58828b
Trying to get urweb.c working for someone in NetBSD
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sat, 06 Feb 2010 13:09:51 -0500 |
parents | 757dbac0454d |
children | a99b743a3087 |
line wrap: on
line source
datatype t = datatype Basis.option val eq : a ::: Type -> eq a -> eq (t a) val ord : a ::: Type -> ord a -> ord (t a) val isNone : a ::: Type -> t a -> bool val isSome : a ::: Type -> t a -> bool val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b val bind : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> t b val get : a ::: Type -> a -> option a -> a