diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
commit | 262c142b90c94ca1aa577c950a6ceae1f255e2d6 (patch) | |
tree | e1de9880b055869186693df6bb93928c1272f944 /compiler/utils/ListSetOps.lhs | |
parent | 00c8fa011bed11d95016c13a75e93bc94a4f6aa5 (diff) | |
download | haskell-262c142b90c94ca1aa577c950a6ceae1f255e2d6.tar.gz |
Remove mapAccumL, mapAccumR, mapAccumB
mapAccumL and mapAccumR are in Data.List now.
mapAccumB is unused.
Diffstat (limited to 'compiler/utils/ListSetOps.lhs')
-rw-r--r-- | compiler/utils/ListSetOps.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/ListSetOps.lhs b/compiler/utils/ListSetOps.lhs index becf9e6da2..29f4bb15f8 100644 --- a/compiler/utils/ListSetOps.lhs +++ b/compiler/utils/ListSetOps.lhs @@ -24,9 +24,9 @@ module ListSetOps ( import Outputable import Unique ( Unique ) import UniqFM ( eltsUFM, emptyUFM, addToUFM_C ) -import Util ( isn'tIn, isIn, mapAccumR, sortLe ) +import Util ( isn'tIn, isIn, sortLe ) -import Data.List ( partition ) +import Data.List \end{code} |