functor-classes-compat-1: src-implicit/unordered-containers/Data/HashMap/Functor/Classes.hs
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Data.HashMap.Functor.Classes () where
import Data.Functor.Classes
import Data.Hashable (Hashable)
import Data.HashMap.Strict (HashMap)
instance Eq k => Eq1 (HashMap k) where eq1 = (==)
instance Show k => Show1 (HashMap k) where showsPrec1 = showsPrec
instance (Eq k, Hashable k, Read k) => Read1 (HashMap k) where readsPrec1 = readsPrec