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.
-
synthesizer-core Synthesizer.Generic.Filter.NonRecursive No documentation available.
maybeM :: Monad m => b -> (a -> m b) -> Maybe a -> m bChart Graphics.Rendering.Chart.Utils Version of maybe that returns a monadic value.
-
automaton Data.Automaton.Trans.Except Converts an Automaton in MaybeT to an Automaton in ExceptT. Whenever Nothing is thrown, throw () instead.
maybeExit :: forall (m :: Type -> Type) a . Monad m => Automaton (MaybeT m) (Maybe a) aautomaton Data.Automaton.Trans.Maybe Just a is passed along, Nothing causes the whole Automaton to exit.
-
automaton Data.Automaton.Trans.Maybe Converts an Automaton in MaybeT to an Automaton in ExceptT. Whenever Nothing is thrown, throw () instead.
maybeToExceptT :: forall (m :: Type -> Type) e a . Functor m => e -> MaybeT m a -> ExceptT e m aautomaton Data.Automaton.Trans.Maybe Convert a MaybeT computation to ExceptT, with a default exception value.
-
beam-core Database.Beam.Query Given an object (third argument) which may or may not be null, return the default value if null (first argument), or transform the value that could be null to yield the result of the expression (second argument)
maybeType :: DataType be a -> DataType be (Maybe a)beam-core Database.Beam.Query.DataTypes Haskell requires DataTypes to match exactly. Use this function to convert a DataType that expects a concrete value to one expecting a Maybe
-
hsemail Text.Parsec.Rfc2822 Return Nothing if the given parser doesn't match. This combinator is included in the latest parsec distribution as optionMaybe, but ghc-6.6.1 apparently doesn't have it.
maybeYield :: forall o (k :: Type -> Type) . Maybe o -> Plan k o ()machines Data.Machine.Plan Like yield, except stops if there is no value to yield.