Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
maybeM :: Monad m => m b -> (a -> m b) -> m (Maybe a) -> m bAgda Agda.Utils.Maybe Monadic version of maybe.
maybeM :: Monad m => m b -> (a -> m b) -> m (Maybe a) -> m bAgda Agda.Utils.Maybe.Strict Monadic version of maybe.
maybeTokenCat :: Cat -> Maybe TokenCatBNFC BNFC.CF No documentation available.
maybeLsb :: Ranked t => t -> Maybe IntOrderedBits Data.Bits.Ordered Maybe the lowest active bit.
maybeNextActive :: Ranked t => Int -> t -> Maybe IntOrderedBits Data.Bits.Ordered Return next active bit, using Maybe.
mayBecomeMultipleArgs :: Token -> BoolShellCheck ShellCheck.ASTLib No documentation available.
maybeToEvent :: Maybe a -> Event aYampa FRP.Yampa Convert a maybe value into a event (Event is isomorphic to Maybe).
maybeToEvent :: Maybe a -> Event aYampa FRP.Yampa.Event Convert a maybe value into a event (Event is isomorphic to Maybe).
maybeKey :: Key -> Decoder a -> Decoder (Maybe a)aeson-combinators Data.Aeson.Combinators.Decode Same as key but works with omitted attributes in payloads and produces parsed values in the context of Maybe. Note that this combinator behaves differently to a combination of maybe and key, which produce error if the attribute is missing from the json object. >>> decode (maybeKey "data" int) "{}" Just Nothing
maybeDecoder :: Decoder r -> Maybe rbinary-parsers Data.Binary.Parser Convert a Decoder value to a Maybe value. A Partial result is treated as failure. Since: 0.2.3.0