definition:
|
listRestPattern :: [CPattern] -> CPattern
listRestPattern xs = case xs of
[] -> pNil
_ -> foldr1 (\x y -> CPComb (pre ":") [x,y]) xs
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructs a head:rest-pattern from a list of patterns. For n passed patterns, the resulting pattern is
--- p1:p2:...:pn
--- If the list is empty, the resulting pattern is
--- []
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> {CPComb} || ({:}) |-> _}
|
name:
|
listRestPattern
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[AbstractCurry.Types.CPattern] -> AbstractCurry.Types.CPattern
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|