aboutsummaryrefslogtreecommitdiff
path: root/Prelude/Product.agda
diff options
context:
space:
mode:
Diffstat (limited to 'Prelude/Product.agda')
-rw-r--r--Prelude/Product.agda9
1 files changed, 9 insertions, 0 deletions
diff --git a/Prelude/Product.agda b/Prelude/Product.agda
new file mode 100644
index 0000000..4732281
--- /dev/null
+++ b/Prelude/Product.agda
@@ -0,0 +1,9 @@
+module B.Prelude.Product where
+
+import Data.Product
+
+open Data.Product
+ using (_×_; proj₁; proj₂; _,_; _,′_; curry; uncurry; uncurry′)
+ public
+
+module Product where