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 ed4e3f5 commit 22e0e40Copy full SHA for 22e0e40
Data/HashMap/Lazy.hs
@@ -102,4 +102,4 @@ import Prelude ()
102
--
103
-- This module satisfies the following strictness property:
104
105
--- * Key arguments are evaluated to WHNF
+-- * Key arguments are evaluated to WHNF.
Data/HashMap/Strict.hs
@@ -96,3 +96,12 @@ module Data.HashMap.Strict
96
import Data.HashMap.Strict.Base as HM
97
import qualified Data.HashSet.Base as HS
98
import Prelude ()
99
+
100
+-- $strictness
101
+--
+-- This module satisfies the following strictness properties:
+-- 1. Key arguments are evaluated to WHNF;
106
+-- 2. Keys and values are evaluated to WHNF before they are stored in
107
+-- the map.
0 commit comments