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.
(
+/+ ) :: String -> String -> Stringhttp-query Network.HTTP.Query Combine two path segments with a slash
"abc" +/+ "def" == "abc/def" "abc/" +/+ "def" == "abc/def" "abc" +/+ "/def" == "abc/def"
(
+++ ) :: Parser a -> Parser a -> Parser apolyparse Text.ParserCombinators.HuttonMeijer No documentation available.
(
+++ ) :: Parser s t e a -> Parser s t e a -> Parser s t e apolyparse Text.ParserCombinators.HuttonMeijerWallace A choice between parsers. Keep only the first success.
type family (xs :: [Effect])
++ (ys :: [Effect]) :: [Effect]effectful-core Effectful.Internal.Effect Append two type-level lists together.
type family (xs :: [Effect])
++ (ys :: [Effect]) :: [Effect]effectful-core Effectful.Provider.List Append two type-level lists together.
(
+++ ) :: 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]
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]
(
+++ ) :: (HTML a, HTML b) => a -> b -> Htmlhtml Text.Html No documentation available.
(
+/- ) :: (Space s, Subtractive (Element s)) => Element s -> Element s -> snumhask-space NumHask.Space create a space centered on a plus or minus b
-
prelude-compat Data.List2010 No documentation available.