diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-09-16 10:51:08 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-25 13:55:09 -0400 |
commit | d90d0bade05fa63b81fe68d42c4242dd97c46e77 (patch) | |
tree | f6afc378d35fde0a90bb8ff0b558fd4dda3c265d /libraries/base/Data/Ix.hs | |
parent | ebc65025435b1c441cfd9fa3dd460201cea4576d (diff) | |
download | haskell-d90d0bade05fa63b81fe68d42c4242dd97c46e77.tar.gz |
base: Move Ix typeclass to GHC.Ix
The `Ix` class seems rather orthogonal to its original home in
`GHC.Arr`.
Diffstat (limited to 'libraries/base/Data/Ix.hs')
-rw-r--r-- | libraries/base/Data/Ix.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Ix.hs b/libraries/base/Data/Ix.hs index 0171431f45..79f0805b84 100644 --- a/libraries/base/Data/Ix.hs +++ b/libraries/base/Data/Ix.hs @@ -61,4 +61,4 @@ module Data.Ix ) where -import GHC.Arr +import GHC.Ix |