CurryInfo: base-3.4.0 / Prelude.++

definition: Info
 
(++) :: [a] -> [a] -> [a]
[]     ++ ys = ys
(x:xs) ++ ys = x : xs ++ ys
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Concatenates two lists.
Since it is flexible, it could be also used to split a list
into two sublists etc.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 infixr
iotype: Info
 {({[]},_) |-> _ || ({:},_) |-> {:}}
name: Info
 ++
precedence: Info
 5
result-values: Info
 _
signature: Info
 [a] -> [a] -> [a]
solution-complete: Info
 operationally complete operation
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms