definition:
|
trPattern :: (QName -> [Int] -> a) -> (Literal -> a) -> Pattern -> a
trPattern pattern _ (Pattern name args) = pattern name args
trPattern _ lpattern (LPattern l) = lpattern l
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- transform pattern
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{Pattern}) |-> _ || (_,_,{LPattern}) |-> _}
|
name:
|
trPattern
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
((String, String) -> [Prelude.Int] -> a) -> (FlatCurry.Types.Literal -> a)
-> FlatCurry.Types.Pattern -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|