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.
(
$+$ ) :: Doc a -> Doc a -> Doc apretty Text.PrettyPrint.Annotated.HughesPJ Above, with no overlapping. $+$ is associative, with identity empty.
(
<+> ) :: Doc a -> Doc a -> Doc apretty Text.PrettyPrint.Annotated.HughesPJ Beside, separated by space, unless one of the arguments is empty. <+> is associative, with identity empty.
-
pretty Text.PrettyPrint.HughesPJ Above, with no overlapping. $+$ is associative, with identity empty.
-
pretty Text.PrettyPrint.HughesPJ Beside, separated by space, unless one of the arguments is empty. <+> is associative, with identity empty.
(
<+> ) :: Doc ann -> Doc ann -> Doc annprettyprinter Prettyprinter (x <+> y) concatenates document x and y with a space in between.
>>> "hello" <+> "world" hello world
x <+> y = x <> space <> y
(
<+> ) :: Doc ann -> Doc ann -> Doc annprettyprinter Prettyprinter.Internal (x <+> y) concatenates document x and y with a space in between.
>>> "hello" <+> "world" hello world
x <+> y = x <> space <> y
type family (l1 :: [Type])
.++ (l2 :: [Type]) :: [Type]servant Servant.API.TypeLevel.List Append two type-level lists. Import it as
import Servant.API.TypeLevel.List (type (.++))
(
<+?> ) :: JsRender doc => doc -> doc -> docghc GHC.JS.Ppr Concatenate with an optional single space
-
ghc GHC.Utils.Outputable Join two SDoc together vertically
(
<+> ) :: IsLine doc => doc -> doc -> docghc GHC.Utils.Outputable Join two docs together horizontally with a gap between them.