Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

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

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

    utility-ht Data.List.HT

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

  3. readsInfixPrec :: (Read a, Read b) => String -> Int -> Int -> (a -> b -> c) -> ReadS c

    utility-ht Text.Read.HT

    Parse a string containing an infix operator.

  4. showsInfixPrec :: (Show a, Show b) => String -> Int -> Int -> a -> b -> ShowS

    utility-ht Text.Show.HT

    Show a value using an infix operator.

  5. module Data.Bifunctor.Fix

    No documentation available.

  6. newtype Fix (p :: Type -> k -> Type) (a :: k)

    bifunctors Data.Bifunctor.Fix

    Greatest fixpoint of a Bifunctor (a Functor over the first argument with zipping).

  7. module Data.Conduit.Network.Unix

    No documentation available.

  8. data AppDataUnix

    conduit-extra Data.Conduit.Network.Unix

    The data passed to a Unix domain sockets Application.

  9. data ClientSettingsUnix

    conduit-extra Data.Conduit.Network.Unix

    Settings for a Unix domain sockets client.

  10. data ServerSettingsUnix

    conduit-extra Data.Conduit.Network.Unix

    Settings for a Unix domain sockets server.

Page 56 of many | Previous | Next