Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
parseGenericPackageDescriptionMaybe :: ByteString -> Maybe GenericPackageDescriptionCabal-syntax Distribution.PackageDescription.Parsec Maybe variant of parseGenericPackageDescription
parsecMaybeQuoted :: CabalParsing m => m a -> m aCabal-syntax Distribution.Parsec parsecMaybeQuoted p = parsecQuoted p | p.
breakMaybe :: (a -> Maybe b) -> [a] -> ([a], Maybe (b, [a]))Cabal-syntax Distribution.Utils.Generic Like break, but with Maybe predicate
>>> breakMaybe (readMaybe :: String -> Maybe Int) ["foo", "bar", "1", "2", "quu"] (["foo","bar"],Just (1,["2","quu"]))
>>> breakMaybe (readMaybe :: String -> Maybe Int) ["foo", "bar"] (["foo","bar"],Nothing)
spanMaybe :: (a -> Maybe b) -> [a] -> ([b], [a])Cabal-syntax Distribution.Utils.Generic Like span but with Maybe predicate
>>> spanMaybe listToMaybe [[1,2],[3],[],[4,5],[6,7]] ([1,3],[[],[4,5],[6,7]])
>>> spanMaybe (readMaybe :: String -> Maybe Int) ["1", "2", "foo"] ([1,2],["foo"])
accessMaybe :: Indexed sh => Array sh a -> Index sh -> Maybe acomfort-array Data.Array.Comfort.Boxed No documentation available.
accessMaybe :: (Indexed sh, Storable a) => Array sh a -> Index sh -> Maybe acomfort-array Data.Array.Comfort.Storable No documentation available.
readMaybe :: (PrimMonad m, Indexed sh, Storable a) => Array m sh a -> Index sh -> Maybe (m a)comfort-array Data.Array.Comfort.Storable.Mutable No documentation available.
readMaybe :: (PrimMonad m, Indexed sh, Storable a) => Array m sh a -> Index sh -> Maybe (m a)comfort-array Data.Array.Comfort.Storable.Mutable.Private No documentation available.
readMaybe :: (PrimMonad m, Indexed sh, Storable a) => Array m sh a -> Index sh -> Maybe (m a)comfort-array Data.Array.Comfort.Storable.Mutable.Unchecked No documentation available.
xpLiftMaybe :: Maybe a -> PU ahxt Text.XML.HXT.Arrow.Pickle Lift a Maybe value to a pickler. Nothing is mapped to the zero pickler, Just x is pickled with xpLift x.