📜  haskell 幺半群定义 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:24.188000             🧑  作者: Mango

代码示例1
class Semigroup a => Monoid a where
  mempty :: a
  mappend :: a -> a -> a
  mconcat :: [a] -> a
  {-# MINIMAL mempty #-}