[Git][ghc/ghc][wip/clc-86] mention base version
Melanie Brown (@mixphix)
gitlab at gitlab.haskell.org
Sun Mar 26 13:36:33 UTC 2023
Melanie Brown pushed to branch wip/clc-86 at Glasgow Haskell Compiler / GHC
Commits:
2bb49bce by Melanie Phoenix at 2023-03-26T09:36:23-04:00
mention base version
- - - - -
1 changed file:
- libraries/base/Data/List/NonEmpty.hs
Changes:
=====================================
libraries/base/Data/List/NonEmpty.hs
=====================================
@@ -472,7 +472,7 @@ zipWith f ~(x :| xs) ~(y :| ys) = f x y :| List.zipWith f xs ys
-- | The 'unzip' function is the inverse of the 'zip' function.
unzip :: Functor f => f (a,b) -> (f a, f b)
unzip xs = (fst <$> xs, snd <$> xs)
-{-# DEPRECATED unzip "This function will be made monomorphic in GHC 9.14, consider switching to Data.Functor.unzip" #-}
+{-# DEPRECATED unzip "This function will be made monomorphic in base-4.22, consider switching to Data.Functor.unzip" #-}
-- | The 'nub' function removes duplicate elements from a list. In
-- particular, it keeps only the first occurrence of each element.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2bb49bce3a1651591bdfbfb6703c20189bcfee61
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2bb49bce3a1651591bdfbfb6703c20189bcfee61
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20230326/7375f97d/attachment-0001.html>
More information about the ghc-commits
mailing list