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.
-
yesod-auth Yesod.Auth Similar to maybeAuth, but doesn’t assume that you are using a Persistent database.
maybeAbort :: (IOTCM -> CommandM a) -> CommandM (Command' (Maybe a))Agda Agda.Interaction.InteractionTop If the next command from the command queue is anything but an actual command, then the command is returned. If the command is an IOTCM command, then the following happens: The given computation is applied to the command and executed. If an abort command is encountered (and acted upon), then the computation is interrupted, the persistent state and all options are restored, and some commands are sent to the frontend. If the computation was not interrupted, then its result is returned.
maybeTimed :: CommandM a -> CommandM (Maybe CPUTime, a)Agda Agda.Interaction.InteractionTop No documentation available.
maybeProjTurnPostfix :: Expr -> Maybe ExprAgda Agda.Syntax.Abstract.Views No documentation available.
maybePlaceholder :: Maybe PositionInName -> Parser e e -> Parser e (MaybePlaceholder e)Agda Agda.Syntax.Concrete.Operators.Parser No documentation available.
maybeNamed :: Expr -> Parser (Named_ Expr)Agda Agda.Syntax.Parser.Helpers When given expression is e1 = e2, turn it into a named expression. Call this inside an implicit argument {e} or {{e}}, where an equality must be a named argument (rather than a cubical partial match).
-
Agda Agda.TypeChecking.Rules.LHS No documentation available.
maybeLeft :: Either a b -> Maybe aAgda Agda.Utils.Either Safe projection from Left.
maybeLeft (Left a) = Just a maybeLeft Right{} = NothingmaybeRight :: Either a b -> Maybe bAgda Agda.Utils.Either Safe projection from Right.
maybeRight (Right b) = Just b maybeRight Left{} = NothingmaybeToEither :: e -> Maybe a -> Either e aAgda Agda.Utils.Either Convert Maybe to Either e, given an error e for the Nothing case.