Safe Haskell | None |
---|---|
Language | Haskell2010 |
An API implementing a convenient syntax for defining maps. This module was born from the observation that a list of tuples is semantically ambiguous about how duplicate keys should be handled. Additionally, the syntax is inherently rather cumbersome and difficult to work with. This API takes advantage of do notation to provide a very light syntax for defining maps while at the same time eliminating the semantic ambiguity of alists.
Here's an example:
foo :: MapSyntax Text Text foo = do "firstName" ## "John" "lastName" ## "Smith"
- data MapSyntaxM k v a
- type MapSyntax k v = MapSyntaxM k v ()
- runMap :: Ord k => MapSyntaxM k v a -> Either [k] (Map k v)
- (##) :: k -> v -> MapSyntax k v
- (#!) :: k -> v -> MapSyntax k v
- (#?) :: k -> v -> MapSyntax k v
- mapK :: (k1 -> k2) -> MapSyntaxM k1 v a -> MapSyntax k2 v
- mapV :: (v1 -> v2) -> MapSyntaxM k v1 a -> MapSyntax k v2
- runMapSyntax :: Monoid map => (k -> map -> Maybe v) -> (k -> v -> map -> map) -> MapSyntaxM k v a -> Either [k] map
- runMapSyntax' :: Monoid map => (k -> v -> v -> Maybe v) -> (k -> map -> Maybe v) -> (k -> v -> map -> map) -> MapSyntaxM k v a -> Either [k] map
- data DupStrat
- data ItemRep k v = ItemRep {}
- addStrat :: DupStrat -> k -> v -> MapSyntax k v
Core API
data MapSyntaxM k v a Source #
A monad providing convenient syntax for defining maps.
Monad (MapSyntaxM k v) Source # | |
Functor (MapSyntaxM k v) Source # | |
Applicative (MapSyntaxM k v) Source # | |
Semigroup (MapSyntax k v) Source # | |
Monoid (MapSyntax k v) Source # | |
type MapSyntax k v = MapSyntaxM k v () Source #
Convenient type alias that will probably be used most of the time.
runMap :: Ord k => MapSyntaxM k v a -> Either [k] (Map k v) Source #
Runs the MapSyntaxM monad to generate a map.
(##) :: k -> v -> MapSyntax k v infixr 0 Source #
Forces an entry to be added. If the key already exists, its value is overwritten.
(#!) :: k -> v -> MapSyntax k v infixr 0 Source #
Tries to add an entry, but if the key already exists, then runMap
will
return a Left with the list of offending keys. This may be useful if name
collisions are bad and you want to know when they occur.
(#?) :: k -> v -> MapSyntax k v infixr 0 Source #
Inserts into the map only if the key does not already exist. If the key does exist, it silently continues without overwriting or generating an error indication.
mapK :: (k1 -> k2) -> MapSyntaxM k1 v a -> MapSyntax k2 v Source #
Maps a function over all the keys.
mapV :: (v1 -> v2) -> MapSyntaxM k v1 a -> MapSyntax k v2 Source #
Maps a function over all the values.
:: Monoid map | |
=> (k -> map -> Maybe v) | Function that gets a key's value |
-> (k -> v -> map -> map) | Function to force-insert a key-value pair into the map |
-> MapSyntaxM k v a | |
-> Either [k] map |
Runs the MapSyntaxM monad to generate a map.
:: Monoid map | |
=> (k -> v -> v -> Maybe v) | Function to handle duplicate key insertion, similar to the first argument to insertWith. If this function returns Nothing, then this is interpreted as an error. If it is a Just, then the resulting value will be inserted into the map. |
-> (k -> map -> Maybe v) | Function that gets a key's value |
-> (k -> v -> map -> map) | Function to force-insert a key-value pair into the map |
-> MapSyntaxM k v a | |
-> Either [k] map |
Runs the MapSyntaxM monad to generate a map. This function gives you the full power of insertWith when duplicate keys are encountered.
Example:
runMapSyntax' (\k new_val old_val -> Just $ old_val ++ new_val)
Lower level functions
Representation of an indivdual item in a map