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.

  1. (++) :: forall (n :: Nat) (m :: Nat) a . SNatI n => Vec n a -> Vec m a -> Vec (Plus n m) a

    vec Data.Vec.DataFamily.SpineStrict

    Append two Vec.

    >>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil)
    'a' ::: 'b' ::: 'c' ::: 'd' ::: VNil
    

  2. (++) :: forall (n :: Nat) a (m :: Nat) . Vec n a -> Vec m a -> Vec (Plus n m) a

    vec Data.Vec.Lazy

    Append two Vec.

    >>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil)
    'a' ::: 'b' ::: 'c' ::: 'd' ::: VNil
    

  3. (++) :: forall (n :: Nat) (m :: Nat) a . SNatI n => Vec n a -> Vec m a -> Vec (Plus n m) a

    vec Data.Vec.Lazy.Inline

    Append two Vec.

    >>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil)
    'a' ::: 'b' ::: 'c' ::: 'd' ::: VNil
    

  4. type family (a :: [k]) ++ (b :: [k]) :: [k]

    wakame Wakame.Utils

    >>> :kind! '[Bool, Int] ++ '[]
    '[Bool, Int] ++ '[] :: [*]
    = '[Bool, Int]
    
    >>> :kind! '[Bool, Int] ++ '[Char, Word]
    '[Bool, Int] ++ '[Char, Word] :: [*]
    = '[Bool, Int, Char, Word]
    

  5. (+++) :: RealVectorSpace ds => ds -> ds -> ds

    LPFP-core LPFPCore

    No documentation available.

  6. (+++) :: RealVectorSpace ds => ds -> ds -> ds

    LPFP-core LPFPCore.Mechanics1D

    No documentation available.

  7. (++) :: Monoid m => m -> m -> m

    classy-prelude-yesod ClassyPrelude.Yesod

    No documentation available.

  8. (+=.) :: forall v typ . PersistField typ => EntityField v typ -> typ -> Update v

    classy-prelude-yesod ClassyPrelude.Yesod

    Assign a field by addition (+=).

    Examples

    addAge :: MonadIO m => ReaderT SqlBackend m ()
    addAge = updateWhere [UserName ==. "SPJ" ] [UserAge +=. 1]
    
    The above query when applied on dataset-1, will produce this:
    +-----+-----+---------+
    |id   |name |age      |
    +-----+-----+---------+
    |1    |SPJ  |40 -> 41 |
    +-----+-----+---------+
    |2    |Simon|41       |
    +-----+-----+---------+
    

  9. (+.) :: Color -> Integer -> Color

    clay Clay.Color

    No documentation available.

  10. (+>) :: (a -> b) -> (a, a) -> (b, b)

    composition-prelude Control.Composition

    Infix synonym for both

Page 35 of many | Previous | Next