Skip to content

Commit 1cad00f

Browse files
committed
Remove map from Prelude hiding list for Mutable.hs
The Mutable module neither defines nor uses anything named map, and mutable vectors can't exactly be mapped anyway, so there's no obvious reason to hide Prelude.map.
1 parent c0308f1 commit 1cad00f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Vector/Mutable.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import qualified Data.Vector.Generic.Mutable as G
5454
import Data.Primitive.Array
5555
import Control.Monad.Primitive
5656

57-
import Prelude hiding ( length, null, replicate, reverse, map, read,
57+
import Prelude hiding ( length, null, replicate, reverse, read,
5858
take, drop, splitAt, init, tail )
5959

6060
import Data.Typeable ( Typeable )

0 commit comments

Comments
 (0)