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.
(
++ ) :: forall (n :: Nat) (m :: Nat) a . SNatI n => Vec n a -> Vec m a -> Vec (Plus n m) avec Data.Vec.DataFamily.SpineStrict Append two Vec.
>>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil) 'a' ::: 'b' ::: 'c' ::: 'd' ::: VNil(
++ ) :: forall (n :: Nat) a (m :: Nat) . Vec n a -> Vec m a -> Vec (Plus n m) avec Data.Vec.Lazy Append two Vec.
>>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil) 'a' ::: 'b' ::: 'c' ::: 'd' ::: VNil(
++ ) :: forall (n :: Nat) (m :: Nat) a . SNatI n => Vec n a -> Vec m a -> Vec (Plus n m) avec Data.Vec.Lazy.Inline Append two Vec.
>>> ('a' ::: 'b' ::: VNil) ++ ('c' ::: 'd' ::: VNil) 'a' ::: 'b' ::: 'c' ::: 'd' ::: VNiltype 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]
(
+++ ) :: RealVectorSpace ds => ds -> ds -> dsLPFP-core LPFPCore No documentation available.
(
+++ ) :: RealVectorSpace ds => ds -> ds -> dsLPFP-core LPFPCore.Mechanics1D No documentation available.
(
++ ) :: Monoid m => m -> m -> mclassy-prelude-yesod ClassyPrelude.Yesod No documentation available.
(
+=. ) :: forall v typ . PersistField typ => EntityField v typ -> typ -> Update vclassy-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 | +-----+-----+---------+
(
+. ) :: Color -> Integer -> Colorclay Clay.Color No documentation available.
(
+> ) :: (a -> b) -> (a, a) -> (b, b)composition-prelude Control.Composition Infix synonym for both