Portability | portable |
---|---|
Stability | experimental |
Maintainer | Uwe Schmidt (uwe@fh-wedel.de) |
Safe Haskell | Safe-Inferred |
An efficient implementation of maps from strings to arbitrary values.
Values can be associated with an arbitrary [Char] key. Searching for keys is very fast.
The main differences to Data.Map and Data.IntMap are the special
prefixFind
functions, which can be used to perform prefix queries. The interface is
heavily borrowed from Data.Map and Data.IntMap.
Most other function names clash with Prelude names, therefore this module is usually
imported qualified
, e.g.
import Data.StringMap (StringMap) import qualified Data.StringMap as M
Many functions have a worst-case complexity of O(min(n,L)). This means that the operation can become linear with the number of elements with a maximum of L, the length of the key (the number of bytes in the list). The functions for searching a prefix have a worst-case complexity of O(max(L,R)). This means that the operation can become linear with R, the number of elements found for the prefix, with a minimum of L.
- data StringMap v
- type Key = [Sym]
- data Key1
- (!) :: StringMap a -> Key -> a
- value :: Monad m => StringMap a -> m a
- valueWithDefault :: a -> StringMap a -> a
- null :: StringMap a -> Bool
- size :: StringMap a -> Int
- member :: Key -> StringMap a -> Bool
- lookup :: Monad m => Key -> StringMap a -> m a
- findWithDefault :: a -> Key -> StringMap a -> a
- prefixFind :: Key -> StringMap a -> [a]
- prefixFindWithKey :: Key -> StringMap a -> [(Key, a)]
- prefixFindWithKeyBF :: Key -> StringMap a -> [(Key, a)]
- lookupGE :: Key -> StringMap a -> StringMap a
- lookupLE :: Key -> StringMap a -> StringMap a
- lookupRange :: Key -> Key -> StringMap a -> StringMap a
- empty :: StringMap v
- singleton :: Key -> a -> StringMap a
- insert :: Key -> a -> StringMap a -> StringMap a
- insertWith :: (a -> a -> a) -> Key -> a -> StringMap a -> StringMap a
- insertWithKey :: (Key -> a -> a -> a) -> Key -> a -> StringMap a -> StringMap a
- adjust :: (a -> a) -> Key -> StringMap a -> StringMap a
- adjustWithKey :: (Key -> a -> a) -> Key -> StringMap a -> StringMap a
- delete :: Key -> StringMap a -> StringMap a
- update :: (a -> Maybe a) -> Key -> StringMap a -> StringMap a
- updateWithKey :: (Key -> a -> Maybe a) -> Key -> StringMap a -> StringMap a
- union :: StringMap a -> StringMap a -> StringMap a
- unionWith :: (a -> a -> a) -> StringMap a -> StringMap a -> StringMap a
- unionMapWith :: (b -> a) -> (a -> b -> a) -> StringMap a -> StringMap b -> StringMap a
- unionWithKey :: (Key -> a -> a -> a) -> StringMap a -> StringMap a -> StringMap a
- difference :: StringMap a -> StringMap b -> StringMap a
- differenceWith :: (a -> b -> Maybe a) -> StringMap a -> StringMap b -> StringMap a
- differenceWithKey :: (Key -> a -> b -> Maybe a) -> StringMap a -> StringMap b -> StringMap a
- intersection :: StringMap a -> StringMap a -> StringMap a
- intersectionWith :: (a -> b -> c) -> StringMap a -> StringMap b -> StringMap c
- map :: (a -> b) -> StringMap a -> StringMap b
- mapWithKey :: (Key -> a -> b) -> StringMap a -> StringMap b
- mapM :: Monad m => (a -> m b) -> StringMap a -> m (StringMap b)
- mapWithKeyM :: Monad m => (Key -> a -> m b) -> StringMap a -> m (StringMap b)
- mapMaybe :: (a -> Maybe b) -> StringMap a -> StringMap b
- fold :: (a -> b -> b) -> b -> StringMap a -> b
- foldWithKey :: (Key -> a -> b -> b) -> b -> StringMap a -> b
- foldl :: (b -> a -> b) -> b -> StringMap a -> b
- foldlWithKey :: (b -> Key -> a -> b) -> b -> StringMap a -> b
- foldr :: (a -> b -> b) -> b -> StringMap a -> b
- foldrWithKey :: (Key -> a -> b -> b) -> b -> StringMap a -> b
- keys :: StringMap a -> [Key]
- elems :: StringMap a -> [a]
- fromList :: [(Key, a)] -> StringMap a
- toList :: StringMap a -> [(Key, a)]
- toListShortestFirst :: StringMap v -> [(Key, v)]
- fromMap :: Map Key a -> StringMap a
- toMap :: StringMap a -> Map Key a
- cutPx' :: StringSet -> StringMap a -> StringMap a
- cutAllPx' :: StringSet -> StringMap a -> StringMap a
- branch :: Sym -> StringMap v -> StringMap v -> StringMap v
- val :: v -> StringMap v -> StringMap v
- siseq :: Key1 -> StringMap v -> StringMap v
- fromKey :: Key -> Key1
- toKey :: Key1 -> Key
- norm :: StringMap v -> StringMap v
- normError' :: String -> String -> a
- unNorm :: StringMap v -> StringMap v
- deepUnNorm :: StringMap v -> StringMap v
- deepNorm :: StringMap v -> StringMap v
- visit :: StringMapVisitor a b -> StringMap a -> b
- data StringMapVisitor a b = PTV {}
Map type
strict list of chars with unpacked fields and packing of 2 or 3 chars into a single object
for internal use in prefix tree to optimize space efficiency
Operators
(!) :: StringMap a -> Key -> aSource
O(min(n,L)) Find the value at a key. Calls error when the element can not be found.
Query
valueWithDefault :: a -> StringMap a -> aSource
O(1) Extract the value of a node or return a default value if no value exists.
lookup :: Monad m => Key -> StringMap a -> m aSource
O(min(n,L)) Find the value associated with a key. The function will return
the result in
the monad or fail
in it if the key isn't in the map.
findWithDefault :: a -> Key -> StringMap a -> aSource
O(min(n,L)) Find the value associated with a key. The function will return
the result in
the monad or fail
in it if the key isn't in the map.
prefixFind :: Key -> StringMap a -> [a]Source
O(max(L,R)) Find all values where the string is a prefix of the key.
prefixFindWithKey :: Key -> StringMap a -> [(Key, a)]Source
Deprecated: use
instead
toList
. prefixFilter
O(max(L,R)) Find all values where the string is a prefix of the key and include the keys in the result.
prefixFindWithKeyBF :: Key -> StringMap a -> [(Key, a)]Source
Deprecated: use
instead
toListShortestFirst
. prefixFilter
O(max(L,R)) Find all values where the string is a prefix of the key and include the keys in the result. The result list contains short words first
lookupGE :: Key -> StringMap a -> StringMap aSource
remove all entries from the map with key less than the argument key
lookupLE :: Key -> StringMap a -> StringMap aSource
remove all entries from the map with keys not having the argument key as prefix and are larger than the argument key
Construction
Insertion
insert :: Key -> a -> StringMap a -> StringMap aSource
O(min(n,L)) Insert a new key and value into the map. If the key is already present in the map, the associated value will be replaced with the new value.
insertWith :: (a -> a -> a) -> Key -> a -> StringMap a -> StringMap aSource
O(min(n,L)) Insert with a combining function. If the key is already present in the map,
the value of f new_value old_value
will be inserted.
insertWithKey :: (Key -> a -> a -> a) -> Key -> a -> StringMap a -> StringMap aSource
O(min(n,L)) Insert with a combining function. If the key is already present in the map,
the value of f key new_value old_value
will be inserted.
Delete/Update
delete :: Key -> StringMap a -> StringMap aSource
O(min(n,L)) Delete an element from the map. If no element exists for the key, the map remains unchanged.
update :: (a -> Maybe a) -> Key -> StringMap a -> StringMap aSource
O(min(n,L)) Updates a value at a given key (if that key is in the trie) or deletes the
element if the result of the updating function is Nothing
. If the key is not found, the trie
is returned unchanged.
updateWithKey :: (Key -> a -> Maybe a) -> Key -> StringMap a -> StringMap aSource
O(min(n,L)) Updates a value at a given key (if that key is in the trie) or deletes the
element if the result of the updating function is Nothing
. If the key is not found, the trie
is returned unchanged.
Combine
Union
unionWith :: (a -> a -> a) -> StringMap a -> StringMap a -> StringMap aSource
O(n+m) union
with a combining function.
unionMapWith :: (b -> a) -> (a -> b -> a) -> StringMap a -> StringMap b -> StringMap aSource
Generalisation of unionWith
. The second map may have another attribute type than the first one.
Conversion and merging of the maps is done in a single step.
This is much more efficient than mapping the second map and then call unionWith
unionWithConf to ( x y -> x op
to y) m1 m2 = unionWith op m1 (fmap to m2)
unionWithKey :: (Key -> a -> a -> a) -> StringMap a -> StringMap a -> StringMap aSource
O(n+m) union
with a combining function, including the key.
Difference
difference :: StringMap a -> StringMap b -> StringMap aSource
(O(min(n,m)) Difference between two string maps (based on keys).
differenceWith :: (a -> b -> Maybe a) -> StringMap a -> StringMap b -> StringMap aSource
(O(min(n,m)) difference
with a combining function. If the combining function always returns
Nothing
, this is equal to proper set difference.
differenceWithKey :: (Key -> a -> b -> Maybe a) -> StringMap a -> StringMap b -> StringMap aSource
O(min(n,m)) difference
with a combining function, including the key. If two equal keys are
encountered, the combining function is applied to the key and both values. If it returns
Nothing
, the element is discarded, if it returns Just
a value, the element is updated
with the new value.
Interset
intersection :: StringMap a -> StringMap a -> StringMap aSource
O(min(n,m)) intersection is required to allow all major set operations:
AND = intersection
OR = union
AND NOT = difference
intersectionWith :: (a -> b -> c) -> StringMap a -> StringMap b -> StringMap cSource
O(min(n,m)) intersection
with a modification function
Traversal
Map
map :: (a -> b) -> StringMap a -> StringMap bSource
O(n) Map a function over all values in the string map.
mapWithKey :: (Key -> a -> b) -> StringMap a -> StringMap bSource
O(n) Same as map
, but with an additional paramter
mapWithKeyM :: Monad m => (Key -> a -> m b) -> StringMap a -> m (StringMap b)Source
Monadic mapWithKey
mapMaybe :: (a -> Maybe b) -> StringMap a -> StringMap bSource
O(n) Updates a value or deletes the element,
if the result of the updating function is Nothing
.
Folds
fold :: (a -> b -> b) -> b -> StringMap a -> bSource
Deprecated: use foldr
instead
O(n) Fold over all values in the map.
foldWithKey :: (Key -> a -> b -> b) -> b -> StringMap a -> bSource
Deprecated: use foldrWithKey
instead
O(n) Fold over all key/value pairs in the map.
foldlWithKey :: (b -> Key -> a -> b) -> b -> StringMap a -> bSource
O(n) Left fold over all keys and values in the map.
foldrWithKey :: (Key -> a -> b -> b) -> b -> StringMap a -> bSource
O(n) Right fold over all keys and values in the map.
Conversion
Lists
fromList :: [(Key, a)] -> StringMap aSource
O(n) Creates a string map from a list of key/value pairs.
toListShortestFirst :: StringMap v -> [(Key, v)]Source
returns all key-value pairs in breadth first order (short words first)
this enables prefix search with upper bounds on the size of the result set
e.g. search ... >>> toListShortestFirst >>> take 1000
will give the 1000 shortest words
found in the result set and will ignore all long words
toList is derived from the following code found in the net when searching haskell breadth first search
Haskell Standard Libraray Implementation
br :: Tree a -> [a] br t = map rootLabel $ concat $ takeWhile (not . null) $ iterate (concatMap subForest) [t]
Maps
Internal
normError' :: String -> String -> aSource
deepUnNorm :: StringMap v -> StringMap vSource
visit :: StringMapVisitor a b -> StringMap a -> bSource
data StringMapVisitor a b Source