CurryInfo: base-3.3.0 / Prelude.++

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