shithub: mc

Download patch

ref: ccc63f9ca4aedd941b0405020ad06e3bd3c7f365
parent: 781e188ad6426398558638dfa0984699d64ef413
author: Ori Bernstein <ori@eigenstate.org>
date: Wed Jun 21 19:43:06 EDT 2017

Fix the last commit.

	Shit. Trivial commits need to be tested too.

--- a/lib/std/option.myr
+++ b/lib/std/option.myr
@@ -3,7 +3,5 @@
 		`None
 		`Some @a
 	;;
-
-	generic canget	: (o : option(@a) -> bool)
 ;;
 
--- a/lib/std/try.myr
+++ b/lib/std/try.myr
@@ -7,6 +7,7 @@
 	generic tryv : (v : result(@a, @b), d : @a -> @a)
 	generic get : (v : option(@a) -> @a)
 	generic getv : (v : option(@a), d : @a -> @a)
+	generic canget	: (o : option(@a) -> bool)
 ;;
 
 generic try = {v