Hoogle Search
Within LTS Haskell 24.31 (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 maybeAuthId, but additionally look up the value associated with the user's database identifier to get the value in the database. This assumes that you are using a Persistent database.
-
yesod-auth Yesod.Auth Retrieves user credentials, if user is authenticated. By default, this calls defaultMaybeAuthId to get the user ID from the session. This can be overridden to allow authentication via other means, such as checking for a special token in a request header. This is especially useful for creating an API to be accessed via some means other than a browser.
-
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{} = Nothing