Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
justified-containers Data.Map.Justified O(n*log n). mappingKeys evaluates a continuation with the map obtained by applying f to each key of s. The size of the resulting map may be smaller if f maps two or more distinct keys to the same new key. In this case the value at the greatest of the original keys is retained. The continuation is passed two things:
- A function that converts evidence that a key belongs to the original map into evidence that a key belongs to the new map.
- The new, possibly-smaller map.
-
justified-containers Data.Map.Justified O(n*log n). Same as mappingKeys, except a function is used to combine values when two or more keys from the original map correspond to the same key in the final map.
-
justified-containers Data.Map.Justified O(n*log n). Same as mappingKeys, but the key-mapping function can make use of evidence that the input key belongs to the original map.
-
justified-containers Data.Map.Justified O(n*log n). Same as mappingKnownKeys, except a function is used to combine values when two or more keys from the original map correspond to the same key in the final map.
mapListPackedSerial :: Serial (Map ByteString [ByteString])lambdabot-core Lambdabot.Plugin No documentation available.
mapPackedSerial :: Serial (Map ByteString ByteString)lambdabot-core Lambdabot.Plugin No documentation available.
mapSerial :: (Ord k, Show k, Show v, Read k, Read v) => Serial (Map k v)lambdabot-core Lambdabot.Plugin Serializes a Map type if both the key and the value are instances of Read and Show. The serialization is done by converting the map to and from lists. Results are saved line-wise, for better editing and revision control.
mapM :: (Functor m, Monad m) => (a -> m b) -> Stream m a -> Stream m bleveldb-haskell Data.Stream.Monadic No documentation available.
mapM_ :: (Functor m, Monad m) => (a -> m b) -> Stream m a -> Stream m ()leveldb-haskell Data.Stream.Monadic No documentation available.
mapLogMessage :: MonadLog message' m => (message -> message') -> LoggingT message m a -> m alogging-effect Control.Monad.Log Re-interpret the log messages in one computation. This can be useful to embed a computation with one log type in a larger general computation.