aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/option.ur
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur/option.ur')
-rw-r--r--lib/ur/option.ur12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ur/option.ur b/lib/ur/option.ur
index 5ec093c0..1f044002 100644
--- a/lib/ur/option.ur
+++ b/lib/ur/option.ur
@@ -1,5 +1,12 @@
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 isSome [a] x =
case x of
None => False
@@ -9,3 +16,8 @@ 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