Hoogle Search
Within LTS Haskell 24.5 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
++. ) :: SqlString s => SqlExpr (Value s) -> SqlExpr (Value s) -> SqlExpr (Value s)esqueleto Database.Esqueleto.Experimental The || string concatenation operator (named after Haskell's ++ in order to avoid naming clash with ||.). Supported by SQLite and PostgreSQL. MySQL support requires setting the SQL mode to PIPES_AS_CONCAT or ANSI - see this StackOverflow answer.
(
++. ) :: SqlString s => SqlExpr (Value s) -> SqlExpr (Value s) -> SqlExpr (Value s)esqueleto Database.Esqueleto.Internal.Internal The || string concatenation operator (named after Haskell's ++ in order to avoid naming clash with ||.). Supported by SQLite and PostgreSQL. MySQL support requires setting the SQL mode to PIPES_AS_CONCAT or ANSI - see this StackOverflow answer.
(
++. ) :: SqlString s => SqlExpr (Value s) -> SqlExpr (Value s) -> SqlExpr (Value s)esqueleto Database.Esqueleto.Legacy The || string concatenation operator (named after Haskell's ++ in order to avoid naming clash with ||.). Supported by SQLite and PostgreSQL. MySQL support requires setting the SQL mode to PIPES_AS_CONCAT or ANSI - see this StackOverflow answer.
(
+++ ) :: ArrowChoice a => a b c -> a b' c' -> a (Either b b') (Either c c')essence-of-live-coding LiveCoding Split the input between the two argument arrows, retagging and merging their outputs. Note that this is in general not a functor. The default definition may be overridden with a more efficient version if desired.
(
+++ ) :: 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]
(
+++ ) :: (HTML a, HTML b) => a -> b -> Htmlhtml Text.Html No documentation available.
(
+++ ) :: 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.
(
+++ ) :: ArrowChoice a => a b c -> a b' c' -> a (Either b b') (Either c c')rebase Rebase.Prelude Split the input between the two argument arrows, retagging and merging their outputs. Note that this is in general not a functor. The default definition may be overridden with a more efficient version if desired.
-
rhine FRP.Rhine.SN.Combinators Compose two signal networks on different clocks in clock-parallel. At one tick of ParClock cl1 cl2, one of the networks is stepped, dependent on which constituent clock has ticked.