aboutsummaryrefslogtreecommitdiff
path: root/Prelude/Maybe.agda
diff options
context:
space:
mode:
Diffstat (limited to 'Prelude/Maybe.agda')
-rw-r--r--Prelude/Maybe.agda12
1 files changed, 12 insertions, 0 deletions
diff --git a/Prelude/Maybe.agda b/Prelude/Maybe.agda
new file mode 100644
index 0000000..5b723db
--- /dev/null
+++ b/Prelude/Maybe.agda
@@ -0,0 +1,12 @@
+module B.Prelude.Maybe where
+
+import Data.Maybe
+
+open Data.Maybe
+ using (Maybe; just; nothing; maybe; maybe′)
+ public
+
+module Maybe where
+ open Data.Maybe
+ using (from-just; is-just; is-nothing)
+ public