Open EarthCitizen opened 7 years ago
Need to implement Semigroup apart from Monoid for base >= 4.9 as in the example below:
#if MIN_VERSION_base(4,9,0) instance Semigroup ByteString where (<>) = append #endif
See migration guide for GHC 8.0:
https://ghc.haskell.org/trac/ghc/wiki/Migration/8.0
Need to implement Semigroup apart from Monoid for base >= 4.9 as in the example below: