Mercurial > urweb
view lib/ur/option.ur @ 1031:5dccff15fa62
Decision status placeholder
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Mon, 02 Nov 2009 15:54:22 -0500 |
parents | 8c37699de273 |
children | 757dbac0454d |
line wrap: on
line source
datatype t = datatype Basis.option fun eq [a] (_ : eq a) = mkEq (fn x y => case (x, y) of (None, None) => True | (Some x, Some y) => x = y | _ => False) fun ord [a] (_ : ord a) = mkOrd {Lt = fn x y => case (x, y) of (None, Some _) => True | (Some x, Some y) => x < y | _ => False, Le = fn x y => case (x, y) of (None, _) => True | (Some x, Some y) => x <= y | _ => False} fun isNone [a] x = case x of None => True | Some _ => False fun isSome [a] x = case x of None => False | Some _ => True fun mp [a] [b] f x = case x of None => None | Some y => Some (f y) fun bind [a] [b] f x = case x of None => None | Some y => f y