diff options
Diffstat (limited to 'src/Data/Dependent/EnumMap/Strict/Internal.hs')
-rw-r--r-- | src/Data/Dependent/EnumMap/Strict/Internal.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Dependent/EnumMap/Strict/Internal.hs b/src/Data/Dependent/EnumMap/Strict/Internal.hs index baa4c39..ddbbe9b 100644 --- a/src/Data/Dependent/EnumMap/Strict/Internal.hs +++ b/src/Data/Dependent/EnumMap/Strict/Internal.hs @@ -9,6 +9,8 @@ {-# LANGUAGE TypeFamilies #-} module Data.Dependent.EnumMap.Strict.Internal where +import Prelude hiding (lookup, map) + import Control.Exception import Data.Bifunctor (bimap, second) import Data.Coerce @@ -22,8 +24,6 @@ import Data.Type.Equality import Text.Show (showListWith) import Unsafe.Coerce (unsafeCoerce) -import Prelude hiding (lookup, map) - type KV :: forall kind. (kind -> Type) -> (kind -> Type) -> Type data KV k v = forall a. KV !(Enum1Info k) !(v a) |