Mercurial > urweb
view lib/ur/option.ur @ 1657:2b7d3d99dc42
Prevent unifications of 'others' pieces in record summaries, when both pieces contain unification variables (to prevent undesired unifications)
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 05 Jan 2012 17:10:43 -0500 |
parents | a99b743a3087 |
children | 36428d853c97 |
line wrap: on
line source
datatype t = datatype Basis.option val monad = mkMonad {Return = @@Some, Bind = fn [a] [b] (m1 : t a) (m2 : a -> t b) => case m1 of None => None | Some v => m2 v} 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 fun get [a] (x : a) (o : option a) = case o of None => x | Some v => v