diff options
author | David Feuer <david.feuer@gmail.com> | 2014-11-20 22:38:57 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-11-20 22:38:58 -0600 |
commit | f60eeb41ab48e73ea49fba64a745ddc4a6b8c085 (patch) | |
tree | 2caa1ccc9f0c332b20b910dcc0b1a8c24a5da9e4 /libraries/base/Data | |
parent | e888b943396c21db74ba2fc69bf3a89e2473ea2b (diff) | |
download | haskell-f60eeb41ab48e73ea49fba64a745ddc4a6b8c085.tar.gz |
Export scanl' from Data.OldList and Data.List
Summary: Fixes #9368
Reviewers: nomeata, hvr, ekmett, austin
Reviewed By: ekmett, austin
Subscribers: thomie, carter
Differential Revision: https://phabricator.haskell.org/D498
GHC Trac Issues: #9368
Diffstat (limited to 'libraries/base/Data')
-rw-r--r-- | libraries/base/Data/List.hs | 1 | ||||
-rw-r--r-- | libraries/base/Data/OldList.hs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/Data/List.hs b/libraries/base/Data/List.hs index 4f999261d8..79192440f6 100644 --- a/libraries/base/Data/List.hs +++ b/libraries/base/Data/List.hs @@ -65,6 +65,7 @@ module Data.List -- ** Scans , scanl + , scanl' , scanl1 , scanr , scanr1 diff --git a/libraries/base/Data/OldList.hs b/libraries/base/Data/OldList.hs index 551b8be124..eb9f1ccedf 100644 --- a/libraries/base/Data/OldList.hs +++ b/libraries/base/Data/OldList.hs @@ -65,6 +65,7 @@ module Data.OldList -- ** Scans , scanl + , scanl' , scanl1 , scanr , scanr1 |