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.

  1. (++.) :: 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.

  2. (++.) :: 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.

  3. (++.) :: 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.

  4. (+++) :: 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.

  5. (+++) :: 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]
    

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

    html Text.Html

    No documentation available.

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

    polyparse Text.ParserCombinators.HuttonMeijer

    No documentation available.

  8. (+++) :: 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.

  9. (+++) :: 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.

  10. (++++) :: forall (m :: Type -> Type) clL clR a b c . (Monad m, Clock m clL, Clock m clR, Clock m (Out clL), Clock m (Out clR), GetClockProxy clL, GetClockProxy clR, Time clL ~ Time clR, Time clL ~ Time (Out clL), Time clL ~ Time (In clL), Time clR ~ Time (Out clR), Time clR ~ Time (In clR)) => SN m clL a b -> SN m clR a c -> SN m (ParClock clL clR) a (Either b c)

    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.

Page 12 of many | Previous | Next