We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147a723 commit 48fe903Copy full SHA for 48fe903
Data/HashMap/Internal.hs
@@ -722,7 +722,7 @@ lookupCont ::
722
lookupCont absent present !h0 !k0 !s0 m0 = lookupCont_ h0 k0 s0 m0
723
where
724
lookupCont_ :: Eq k => Hash -> k -> Shift -> HashMap k v -> r
725
- lookupCont_ h k _ (Leaf hx (L kx x))
+ lookupCont_ !h !k !_s (Leaf hx (L kx x))
726
| h == hx && k == kx = present x (-1)
727
| otherwise = absent (# #)
728
lookupCont_ h k s (BitmapIndexed b v)
0 commit comments