shithub: MicroHs

Download patch

ref: 8d637be00504121ee2da2d5daf21e2c93e6d6951
parent: 439ea35f310fcc33917f42bff2e04ff17501ae42
author: Lennart Augustsson <lennart@augustsson.net>
date: Wed Sep 18 14:36:33 EDT 2024

Export more

--- a/lib/Data/Semigroup.hs
+++ b/lib/Data/Semigroup.hs
@@ -1,9 +1,6 @@
 module Data.Semigroup(
-  Semigroup(..),
-  stimesIdempotent,
-  stimesIdempotentMonoid,
-  stimesMonoid,
+  module Data.Monoid,
   ) where
 import Prelude()              -- do not import Prelude
-import Data.Monoid
+import Data.Monoid hiding(Monoid(..))
 -- Data.Monoid contains the definition of Semigroup
--