definition:
|
rnPattern :: Renaming (APattern a)
rnPattern xs (APattern a p ys) = let (as, bs) = takeVars xs ys
in (as, APattern a p (swapAnn bs ys))
rnPattern xs l@(ALPattern _ _) = (xs, l)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{APattern}) |-> {(,)} || (_,{ALPattern}) |-> {(,)}}
|
name:
|
rnPattern
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
[Prelude.Int] -> FlatCurry.Annotated.Types.APattern a
-> ([Prelude.Int], FlatCurry.Annotated.Types.APattern a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|