aboutsummaryrefslogtreecommitdiff
path: root/Prelude/Sum.agda
diff options
context:
space:
mode:
Diffstat (limited to 'Prelude/Sum.agda')
-rw-r--r--Prelude/Sum.agda12
1 files changed, 12 insertions, 0 deletions
diff --git a/Prelude/Sum.agda b/Prelude/Sum.agda
new file mode 100644
index 0000000..4cc1491
--- /dev/null
+++ b/Prelude/Sum.agda
@@ -0,0 +1,12 @@
+module B.Prelude.Sum where
+
+import Data.Sum
+
+open Data.Sum
+ using (_⊎_; inj₁; inj₂; [_,_]; [_,_]′)
+ public
+
+module Sum where
+ open Data.Sum
+ using (isInj₁; isInj₂)
+ public