Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. (+/+) :: String -> String -> String

    http-query Network.HTTP.Query

    Combine two path segments with a slash

    "abc" +/+ "def" == "abc/def"
    "abc/" +/+ "def" == "abc/def"
    "abc" +/+ "/def" == "abc/def"
    

  2. (+++) :: Parser a -> Parser a -> Parser a

    polyparse Text.ParserCombinators.HuttonMeijer

    No documentation available.

  3. (+++) :: Parser s t e a -> Parser s t e a -> Parser s t e a

    polyparse Text.ParserCombinators.HuttonMeijerWallace

    A choice between parsers. Keep only the first success.

  4. type family (xs :: [Effect]) ++ (ys :: [Effect]) :: [Effect]

    effectful-core Effectful.Internal.Effect

    Append two type-level lists together.

  5. type family (xs :: [Effect]) ++ (ys :: [Effect]) :: [Effect]

    effectful-core Effectful.Provider.List

    Append two type-level lists together.

  6. (+++) :: Ord a => [a] -> [a] -> [a]

    express Data.Express.Utils.List

    Merges two lists discarding repeated elements. The argument lists need to be in order.

    > [1,10,100] +++ [9,10,11]
    [1,9,10,11,100]
    

  7. data ((b :: [a]) ++ (c :: [a])) (d :: [a])

    harpie Harpie.Shape

    List catenation.

    Example

    >>> data Example where Ex :: a -> Example  -- Hide the type of examples to avoid brittleness in different GHC versions
    
    >>> :kind! Ex (Eval ([1, 2] ++ [3, 4]) :: [Natural])
    Ex (Eval ([1, 2] ++ [3, 4]) :: [Natural]) :: Example
    = Ex [1, 2, 3, 4]
    

  8. (+++) :: (HTML a, HTML b) => a -> b -> Html

    html Text.Html

    No documentation available.

  9. (+/-) :: (Space s, Subtractive (Element s)) => Element s -> Element s -> s

    numhask-space NumHask.Space

    create a space centered on a plus or minus b

  10. (++) :: [a] -> [a] -> [a]

    prelude-compat Data.List2010

    No documentation available.

Page 20 of many | Previous | Next