1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 14:21:31 +03:00

Define a Monoid instance.

This commit is contained in:
Rob Rix 2018-05-11 12:11:03 -04:00
parent 17a9b20222
commit 869b054f2b

View File

@ -21,3 +21,7 @@ simplify (Graph graph) = Graph (G.simplify graph)
instance Semigroup (Graph v) where
(<>) = Class.overlay
instance Monoid (Graph v) where
mempty = Class.empty
mappend = (<>)