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.

  1. parseGenericPackageDescriptionMaybe :: ByteString -> Maybe GenericPackageDescription

    Cabal-syntax Distribution.PackageDescription.Parsec

    Maybe variant of parseGenericPackageDescription

  2. parsecMaybeQuoted :: CabalParsing m => m a -> m a

    Cabal-syntax Distribution.Parsec

    parsecMaybeQuoted p = parsecQuoted p | p.

  3. 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)
    

  4. 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"])
    

  5. accessMaybe :: Indexed sh => Array sh a -> Index sh -> Maybe a

    comfort-array Data.Array.Comfort.Boxed

    No documentation available.

  6. accessMaybe :: (Indexed sh, Storable a) => Array sh a -> Index sh -> Maybe a

    comfort-array Data.Array.Comfort.Storable

    No documentation available.

  7. 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.

  8. 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.

  9. 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.

  10. xpLiftMaybe :: Maybe a -> PU a

    hxt 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.

Page 164 of many | Previous | Next