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.

  1. maybeLeft :: Either a b -> Maybe a

    utility-ht Data.Either.HT

    No documentation available.

  2. maybeRight :: Either a b -> Maybe b

    utility-ht Data.Either.HT

    No documentation available.

  3. maybePrefixOf :: Eq a => [a] -> [a] -> Maybe [a]

    utility-ht Data.List.HT

    maybePrefixOf xs ys is Just zs if xs is a prefix of ys, where zs is ys without the prefix xs. Otherwise it is Nothing. It is the same as stripPrefix.

    >>> maybePrefixOf "abc" "abcdef"
    Just "def"
    
    >>> maybePrefixOf "def" "abcdef"
    Nothing
    

  4. maybeSuffixOf :: Eq a => [a] -> [a] -> Maybe [a]

    utility-ht Data.List.HT

    >>> maybeSuffixOf "abc" "abcdef"
    Nothing
    
    >>> maybeSuffixOf "def" "abcdef"
    Just "abc"
    

  5. maybeRead :: Read a => String -> Maybe a

    utility-ht Text.Read.HT

    No documentation available.

  6. maybeFromUnion :: forall (as :: [Type]) a . EitherFromUnion as '[()] => (Union as -> a) -> Union (as .++ '[()]) -> Maybe a

    servant Servant.API.MultiVerb

    No documentation available.

  7. maybeToUnion :: forall (as :: [Type]) a . (InjectAfter as '[()], InjectBefore as '[()]) => (a -> Union as) -> Maybe a -> Union (as .++ '[()])

    servant Servant.API.MultiVerb

    No documentation available.

  8. maybeNamedArray :: Maybe Text -> [YamlBuilder] -> YamlBuilder

    yaml Data.Yaml.Builder

    No documentation available.

  9. maybeNamedBool :: Maybe Text -> Bool -> YamlBuilder

    yaml Data.Yaml.Builder

    No documentation available.

  10. maybeNamedMapping :: Maybe Text -> [(Text, YamlBuilder)] -> YamlBuilder

    yaml Data.Yaml.Builder

    No documentation available.

Page 32 of many | Previous | Next