File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ module Data.Vector (
150
150
-- * Conversions
151
151
152
152
-- ** Lists
153
- toList , fromList , fromListN ,
153
+ toList , Data.Vector. fromList , Data.Vector. fromListN ,
154
154
155
155
-- ** Other vector types
156
156
G. convert ,
@@ -223,8 +223,8 @@ instance Read a => Read (Vector a) where
223
223
224
224
instance Exts. IsList (Vector a ) where
225
225
type Item (Vector a ) = a
226
- fromList = fromList
227
- fromListN = fromListN
226
+ fromList = Data.Vector. fromList
227
+ fromListN = Data.Vector. fromListN
228
228
toList = toList
229
229
#endif
230
230
@@ -344,7 +344,7 @@ instance Foldable.Foldable Vector where
344
344
345
345
instance Traversable. Traversable Vector where
346
346
{-# INLINE traverse #-}
347
- traverse f xs = fromList Applicative. <$> Traversable. traverse f (toList xs)
347
+ traverse f xs = Data.Vector. fromList Applicative. <$> Traversable. traverse f (toList xs)
348
348
349
349
{-# INLINE mapM #-}
350
350
mapM = mapM
You can’t perform that action at this time.
0 commit comments