summaryrefslogtreecommitdiff
path: root/src/Data/Bitfield/Mutable.hs
diff options
context:
space:
mode:
authorSam T <pxqr.sta@gmail.com>2013-05-20 15:59:54 +0400
committerSam T <pxqr.sta@gmail.com>2013-05-20 15:59:54 +0400
commit3498b67c4dac7850d24df6a70583f5868b5a288e (patch)
treedfe4b1f9d45016e044577d929f56ba812c980570 /src/Data/Bitfield/Mutable.hs
parent6f72996b629562141d72cda1b95af4efb4e2a91e (diff)
~ Unify export lists.
Diffstat (limited to 'src/Data/Bitfield/Mutable.hs')
-rw-r--r--src/Data/Bitfield/Mutable.hs16
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
55import Control.Applicative hiding (empty) 45import Control.Applicative hiding (empty)