|
definition: |
renameSymbolInRhs :: (QName -> QName) -> Rhs -> Rhs renameSymbolInRhs ren (SimpleRhs e) = SimpleRhs (renameSymbolInExpr ren e) renameSymbolInRhs ren (GuardedRhs gs) = GuardedRhs $ map (\ (c, e) -> (renameSymbolInExpr ren c, renameSymbolInExpr ren e)) gs |
|
demand: |
argument 2 |
|
deterministic: |
deterministic operation |
|
failfree: |
(_, _) |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_,{SimpleRhs}) |-> {SimpleRhs} || (_,{GuardedRhs}) |-> _}
|
|
name: |
renameSymbolInRhs |
|
precedence: |
no precedence defined |
|
result-values: |
_ |
|
signature: |
((String, String) -> (String, String)) -> AbstractHaskell.Types.Rhs -> AbstractHaskell.Types.Rhs |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
reducible on all ground data terms |