Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapSnd :: (a -> b) -> (c, a) -> (c, b)

    tidal-core Sound.Tidal.Utils

    No documentation available.

  2. mapOf :: Ord k => (l -> Text -> Matcher l k) -> (Text -> Value' l -> Matcher l v) -> Value' l -> Matcher l (Map k v)

    toml-parser Toml.Schema

    Table matching function used to help implement fromValue for tables. Key matching function is given the annotation of the key for error reporting. Value matching function is given the key in case values can depend on their keys.

  3. mapOf :: Ord k => (l -> Text -> Matcher l k) -> (Text -> Value' l -> Matcher l v) -> Value' l -> Matcher l (Map k v)

    toml-parser Toml.Schema.FromValue

    Table matching function used to help implement fromValue for tables. Key matching function is given the annotation of the key for error reporting. Value matching function is given the key in case values can depend on their keys.

  4. mapM :: Monad m => (a -> m b) -> Stream m a -> Stream m b

    vector-stream Data.Stream.Monadic

    Map a monadic function over a Stream

  5. mapM_ :: Monad m => (a -> m b) -> Stream m a -> m ()

    vector-stream Data.Stream.Monadic

    Execute a monadic action for each element of the Stream

  6. mapMaybe :: forall (m :: Type -> Type) a b . Monad m => (a -> Maybe b) -> Stream m a -> Stream m b

    vector-stream Data.Stream.Monadic

    No documentation available.

  7. mapMaybeM :: Monad m => (a -> m (Maybe b)) -> Stream m a -> Stream m b

    vector-stream Data.Stream.Monadic

    Apply monadic function to each element and drop all Nothings

  8. mapStore :: (Ord k, MonadIO m) => IO ByteString -> IO (SessionStore m k v)

    wai-session Network.Wai.Session.Map

    Simple session store based on threadsafe IORefs and Map. This only works if your application server remains running (such as with warp). All data is lost when the server terminates (bad for CGI). WARNING: This session is vulnerable to sidejacking, use with TLS for security.

  9. mapStore_ :: (Ord k, MonadIO m) => IO (SessionStore m k v)

    wai-session Network.Wai.Session.Map

    Store using simple session ID generator based on time and Unique

  10. mapRouteT :: (m a -> n b) -> RouteT url m a -> RouteT url n b

    web-routes Web.Routes.RouteT

    Transform the computation inside a RouteT.

Page 304 of many | Previous | Next