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.
(
++ ) :: SymVal a => SList a -> SList a -> SList asbv Data.SBV.List Append two lists.
>>> sat $ \x y z -> length x .== 5 .&& length y .== 1 .&& x ++ y ++ z .== [1 .. 12] Satisfiable. Model: s0 = [1,2,3,4,5] :: [Integer] s1 = [6] :: [Integer] s2 = [7,8,9,10,11,12] :: [Integer]
(
++ ) :: SString -> SString -> SStringsbv Data.SBV.String Short cut for concat.
>>> sat $ \x y z -> length x .== 5 .&& length y .== 1 .&& x ++ y ++ z .== "Hello world!" Satisfiable. Model: s0 = "Hello" :: String s1 = " " :: String s2 = "world!" :: String
(
+! ) :: CheckedArithmetic a => SBV a -> SBV a -> SBV asbv Data.SBV.Tools.Overflow No documentation available.
(
++| ) :: Pattern String -> Pattern String -> Pattern Stringtidal-core Sound.Tidal.Core No documentation available.
(
+| ) :: Num a => Pattern a -> Pattern a -> Pattern atidal-core Sound.Tidal.Core No documentation available.
type (l :: Symbol)
++ (r :: Symbol) = AppendSymbol l rtype-level-show TypeLevelShow.Utils No documentation available.
(
++ ) :: forall (m :: Type -> Type) a . Monad m => Stream m a -> Stream m a -> Stream m avector-stream Data.Stream.Monadic Concatenate two Streams
(
++# ) :: DeBruijn a => [a] -> Substitution' a -> Substitution' aAgda Agda.TypeChecking.Substitute.Class No documentation available.
(
+++ ) :: String -> String -> StringBNFC BNFC.Utils Concatenate strings by a space.
(
++++ ) :: String -> String -> StringBNFC BNFC.Utils Concatenate strings by a newline.