diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-05-13 13:38:41 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-05-13 13:38:41 +0200 |
commit | 1b03c32b718db1f6373f436eead5e56fac50b236 (patch) | |
tree | fc8c72867ee6989ebb44fae06a38e54f52cc1a73 | |
parent | a128aae27a741400391ec8608d94b26da7cb157c (diff) |
Consistent Prelude import position
-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) |