Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
maybe'vclock :: (Functor f, HasField s "maybe'vclock" a) => LensLike' f s ariak-protobuf Data.Riak.Proto No documentation available.
maybe'vtag :: (Functor f, HasField s "maybe'vtag" a) => LensLike' f s ariak-protobuf Data.Riak.Proto No documentation available.
maybe'w :: (Functor f, HasField s "maybe'w" a) => LensLike' f s ariak-protobuf Data.Riak.Proto No documentation available.
maybe'writeOnce :: (Functor f, HasField s "maybe'writeOnce" a) => LensLike' f s ariak-protobuf Data.Riak.Proto No documentation available.
maybe'youngVclock :: (Functor f, HasField s "maybe'youngVclock" a) => LensLike' f s ariak-protobuf Data.Riak.Proto No documentation available.
maybeQueries :: (Text -> IO ()) -> Configuration -> [Query] -> IO (Maybe [QueryResult])sphinx Text.Search.Sphinx executes runQueries. Log warning and errors, automatically retry. Return a Nothing on error, otherwise a Just.
-
strict-base-types Data.Maybe.Strict Analogous to maybeToList in Data.Maybe.
maybeK :: b -> (a -> b) -> MaybeK a -> bunification-fd Control.Monad.MaybeK A version of maybe for convenience. This is almost identical to mplus but allows applying a continuation to Just values as well as handling Nothing errors. If you only want to handle the errors, use mplus instead.
maybeMatch :: (a -> b) -> a -> Maybe bunipatterns UniPatterns Run a function returning Nothing if function fails to pattern match.
>>> maybeMatch (\[a] -> a + 10) [5] Just 15 >>> maybeMatch (\[a] -> a + 10) [] Nothing >>> maybeMatch (\[a] -> a + 10) [1, 2, 3] Nothing
maybeToEither :: a -> Maybe b -> Either a bverset Verset Given a Maybe, convert it to an Either, providing a suitable value for the Left should the value be Nothing.
\a b -> maybeToEither a (Just b) == Right b \a -> maybeToEither a Nothing == Left a