diff options
Diffstat (limited to 'src/Data/Bitfield/Mutable.hs')
-rw-r--r-- | src/Data/Bitfield/Mutable.hs | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/Data/Bitfield/Mutable.hs b/src/Data/Bitfield/Mutable.hs index 5de84dc8..504c4cd0 100644 --- a/src/Data/Bitfield/Mutable.hs +++ b/src/Data/Bitfield/Mutable.hs | |||
@@ -25,31 +25,21 @@ module Data.Bitfield.Mutable | |||
25 | 25 | ||
26 | -- * Construction | 26 | -- * Construction |
27 | , empty, full | 27 | , empty, full |
28 | , create, releaseIntSet | ||
28 | 29 | ||
29 | -- * Query | 30 | -- * Query |
30 | -- , lookup, member, notMember | 31 | -- , lookup, member, notMember |
31 | -- , size | 32 | -- , size |
32 | , maxSize | 33 | , maxSize |
34 | , lookupUnsafe | ||
33 | 35 | ||
34 | -- * Modification | 36 | -- * Modification |
35 | -- , insert, delete | 37 | -- , insert, delete |
38 | , insertUnsafe, deleteUnsafe | ||
36 | 39 | ||
37 | -- * Conversion | 40 | -- * Conversion |
38 | , fromByteString, toByteString | 41 | , fromByteString, toByteString |
39 | |||
40 | -- * Unsafe operations | ||
41 | -- ** Construction | ||
42 | , create, releaseIntSet | ||
43 | |||
44 | -- ** Modification | ||
45 | , insertUnsafe, deleteUnsafe | ||
46 | |||
47 | -- ** Query | ||
48 | , lookupUnsafe | ||
49 | |||
50 | -- ** Conversion | ||
51 | , fromByteStringUnsafe, toByteStringUnsafe | 42 | , fromByteStringUnsafe, toByteStringUnsafe |
52 | |||
53 | ) where | 43 | ) where |
54 | 44 | ||
55 | import Control.Applicative hiding (empty) | 45 | import Control.Applicative hiding (empty) |