Skip to content

Commit b79a032

Browse files
committed
Remove last vestiges of foldlStrict
The function has been gone for a while; remove comments referring to it.
1 parent 3e21bf6 commit b79a032

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Data/Map/Internal.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3358,7 +3358,6 @@ fromSet f (Set.Bin sz x l r) = Bin sz x (f x) (fromSet f l) (fromSet f r)
33583358

33593359
{--------------------------------------------------------------------
33603360
Lists
3361-
use [foldlStrict] to reduce demand on the control-stack
33623361
--------------------------------------------------------------------}
33633362
#if __GLASGOW_HASKELL__ >= 708
33643363
-- | @since 0.5.6.2

Data/Map/Strict/Internal.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,6 @@ fromSet f (Set.Bin sz x l r) = case f x of v -> v `seq` Bin sz x v (fromSet f l)
14711471

14721472
{--------------------------------------------------------------------
14731473
Lists
1474-
use [foldlStrict] to reduce demand on the control-stack
14751474
--------------------------------------------------------------------}
14761475
-- | /O(n*log n)/. Build a map from a list of key\/value pairs. See also 'fromAscList'.
14771476
-- If the list contains more than one value for the same key, the last value

0 commit comments

Comments
 (0)