1
1
mirror of https://github.com/github/semantic.git synced 2024-12-27 00:44:57 +03:00
semantic/src/Data/Graph.hs

10 lines
220 B
Haskell
Raw Normal View History

2018-05-11 19:08:36 +03:00
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
2018-05-11 19:07:05 +03:00
module Data.Graph
( Graph(..)
) where
import qualified Algebra.Graph as G
newtype Graph vertex = Graph (G.Graph vertex)
2018-05-11 19:08:36 +03:00
deriving (Eq, Foldable, Functor, Show, Traversable)