aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/option.urs
diff options
context:
space:
mode:
authorGravatar Austin Seipp <mad.one@gmail.com>2012-11-28 11:41:54 -0500
committerGravatar Austin Seipp <mad.one@gmail.com>2012-11-28 11:41:54 -0500
commit9157968f41a0cc24e6621e2860f50a98866ed541 (patch)
tree3fcdb678f49ee4d5a3c2c04364828fc97cfae1ff /lib/ur/option.urs
parent3ef0f1fcb1df60f2d5944a9ff2902d0885fcb13f (diff)
Standard library additions: Option.unsafeGet, Basis.exp
Diffstat (limited to 'lib/ur/option.urs')
-rw-r--r--lib/ur/option.urs1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ur/option.urs b/lib/ur/option.urs
index ba43613f..126999a3 100644
--- a/lib/ur/option.urs
+++ b/lib/ur/option.urs
@@ -12,3 +12,4 @@ 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
+val unsafeGet : a ::: Type -> option a -> a