File tree 1 file changed +2
-14
lines changed
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change 17
17
--
18
18
-- = Finite Int Sets
19
19
--
20
- -- The @'IntSet'@ type represents a set of elements of type @Int@.
20
+ -- The @'IntSet'@ type represents a set of elements of type @Int@. An @IntSet@
21
+ -- is strict in its elements.
21
22
--
22
23
-- For a walkthrough of the most commonly used functions see their
23
24
-- <https://haskell-containers.readthedocs.io/en/latest/set.html sets introduction>.
61
62
-----------------------------------------------------------------------------
62
63
63
64
module Data.IntSet (
64
- -- * Strictness properties
65
- -- $strictness
66
-
67
65
-- * Set type
68
66
#if !defined(TESTING)
69
67
IntSet -- instance Eq,Show
@@ -162,13 +160,3 @@ module Data.IntSet (
162
160
163
161
import Data.IntSet.Internal.IntTreeCommons (Key )
164
162
import Data.IntSet.Internal as IS
165
-
166
- -- $strictness
167
- --
168
- -- This module satisfies the following strictness property:
169
- --
170
- -- * Key arguments are evaluated to WHNF
171
- --
172
- -- Here are some examples that illustrate the property:
173
- --
174
- -- > delete undefined s == undefined
You can’t perform that action at this time.
0 commit comments