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.
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
maybeSuffixOf :: Eq a => [a] -> [a] -> Maybe [a]utility-ht Data.List.HT >>> maybeSuffixOf "abc" "abcdef" Nothing >>> maybeSuffixOf "def" "abcdef" Just "abc"
readsInfixPrec :: (Read a, Read b) => String -> Int -> Int -> (a -> b -> c) -> ReadS cutility-ht Text.Read.HT Parse a string containing an infix operator.
showsInfixPrec :: (Show a, Show b) => String -> Int -> Int -> a -> b -> ShowSutility-ht Text.Show.HT Show a value using an infix operator.
-
No documentation available.
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).
module Data.Conduit.Network.
Unix No documentation available.
-
conduit-extra Data.Conduit.Network.Unix The data passed to a Unix domain sockets Application.
-
conduit-extra Data.Conduit.Network.Unix Settings for a Unix domain sockets client.
-
conduit-extra Data.Conduit.Network.Unix Settings for a Unix domain sockets server.