Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
uniqueQueryMaybe' :: UniqueRelation p c r -> QueryUnique (PlaceHolders p, Record c (Maybe r))relational-schemas Database.Custom.SQLite3 Join unique sub-query with place-holder parameter p. Query result is Maybe.
-
strict-base-types Data.Maybe.Strict Analogous to catMaybes in Data.Maybe.
fromMaybe :: a -> Maybe a -> astrict-base-types Data.Maybe.Strict Given a default value and a Maybe, yield the default value if the Maybe argument is Nothing and extract the value out of the Just otherwise.
-
strict-base-types Data.Maybe.Strict Analogous to listToMaybe in Data.Maybe.
mapMaybe :: (a -> Maybe b) -> [a] -> [b]strict-base-types Data.Maybe.Strict Analogous to mapMaybe in Data.Maybe.
hoistMaybe :: forall (m :: Type -> Type) x a . Monad m => x -> Maybe a -> EitherT x m atransformers-either Control.Monad.Trans.Either liftMaybeK :: forall (m :: Type -> Type) a . Applicative m => MaybeK a -> MaybeKT m aunification-fd Control.Monad.MaybeK Lift an MaybeK into an MaybeKT.
lowerMaybeK :: Applicative m => MaybeKT m a -> m (MaybeK a)unification-fd Control.Monad.MaybeK Lower an MaybeKT into an MaybeK.
runMaybeK :: MaybeK a -> Maybe aunification-fd Control.Monad.MaybeK Execute the MaybeK and return the concrete Maybe encoding.
runMaybeKT :: Applicative m => MaybeKT m a -> m (Maybe a)unification-fd Control.Monad.MaybeK Execute a MaybeKT and return the concrete Maybe encoding.