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

📝 Graph.

This commit is contained in:
Rob Rix 2018-05-11 12:12:23 -04:00
parent 742f3b2744
commit 84c69b038d

View File

@ -11,6 +11,7 @@ import qualified Algebra.Graph as G
import qualified Algebra.Graph.Class as Class
import Prologue
-- | An algebraic graph with 'Ord', 'Semigroup', and 'Monoid' instances.
newtype Graph vertex = Graph (G.Graph vertex)
deriving (Eq, Foldable, Functor, Class.Graph, Show, Class.ToGraph, Traversable)