Documentation
findWithDefault :: a -> Key -> CharMap a -> aSource
insertWith :: (a -> a -> a) -> Key -> a -> CharMap a -> CharMap aSource
unionsWith :: (a -> a -> a) -> [CharMap a] -> CharMap aSource
difference :: CharMap a -> CharMap b -> CharMap aSource
intersection :: CharMap a -> CharMap b -> CharMap aSource
intersectionWith :: (a -> b -> a) -> CharMap a -> CharMap b -> CharMap aSource
mapWithKey :: (Key -> a -> b) -> CharMap a -> CharMap bSource
mapAccumWithKey :: (a -> Key -> b -> (a, c)) -> a -> CharMap b -> (a, CharMap c)Source
foldWithKey :: (Key -> a -> b -> b) -> b -> CharMap a -> bSource
fromListWith :: (a -> a -> a) -> [(Key, a)] -> CharMap aSource
fromListWithKey :: (Key -> a -> a -> a) -> [(Key, a)] -> CharMap aSource
fromAscList :: [(Key, a)] -> CharMap aSource
fromAscListWith :: (a -> a -> a) -> [(Key, a)] -> CharMap aSource
fromAscListWithKey :: (Key -> a -> a -> a) -> [(Key, a)] -> CharMap aSource
fromDistinctAscList :: [(Key, a)] -> CharMap aSource