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 ann -> Doc ann -> Doc annnvim-hs Neovim.Classes (x <+> y) concatenates document x and y with a space in between.
>>> "hello" <+> "world" hello world
x <+> y = x <> space <> y
(
.+. ) :: (OperatorContext c, Num a) => Record c a -> Record c a -> Record c arelational-query Database.Relational.Arrow Number operator corresponding SQL + .
-
relational-query Database.Relational.Arrow Number operator corresponding SQL + .
(
.+. ) :: (OperatorContext c, Num a) => Record c a -> Record c a -> Record c arelational-query Database.Relational.Projectable Number operator corresponding SQL + .
-
relational-query Database.Relational.Projectable Number operator corresponding SQL + .
(
<+> ) :: StyleDoc -> StyleDoc -> StyleDocrio-prettyprint RIO.PrettyPrint The document (x <+> y) concatenates document x and y with a (fromString " ") in between. (infixr 6)
(
<+> ) :: StyleDoc -> StyleDoc -> StyleDocrio-prettyprint Text.PrettyPrint.Leijen.Extended The document (x <+> y) concatenates document x and y with a (fromString " ") in between. (infixr 6)
-
sayable Text.Sayable A helper operator allowing two Sayable items to be composed into a Saying by placing the two Sayable items immediately adjacent with no intervening spaces. This is the high-density version of the more common &- operator.
>>> sez @"info" $ t'"hello" &+ t'"world" "helloworld"
-
sayable Text.Sayable A helper operator that generates a sayable from a foldable group (e.g. list) of sayable items. This helper is linke the &* operator except that the folded output is immediately adjacent to the preceeding sayable output instead of separated by a space; this is useful for situations where the folded output has delimiters like parentheses or brackets.
>>> sez @"info" $ t'"three:" &- '(' &+* [1,2,3::Int] &+ ')' "three: (1, 2, 3)"If the second argument is an empty collection then no output is generated for it. -
sayable Text.Sayable A helper operator that emits the first argument and optionally emits a the Just value of the second argument immediately thereafter if the second argument is not Nothing
>>> sez @"info" $ t'"It's" &+? Nothing &- t'"ok" &+? Just "time" "It's oktime"
@since: 1.2.0.0