blob: 1f044002a583a0b9d85cc563a376f8ae37bc9320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
| 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
|