1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Stub in a Monoidal map module.

This commit is contained in:
Rob Rix 2018-03-07 12:22:52 -05:00
parent c121a0665e
commit 257a068b3c
2 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,7 @@ library
, Data.Functor.Classes.Generic
, Data.JSON.Fields
, Data.Language
, Data.Map.Monoidal
, Data.Mergeable
, Data.Output
, Data.Patch

2
src/Data/Map/Monoidal.hs Normal file
View File

@ -0,0 +1,2 @@
-- | This module defines a 'Map' type whose 'Monoid' and 'Reducer' instances merge values using the 'Semigroup' instance for the underlying type.
module Data.Map.Monoidal where