CurryInfo: cass-analysis-4.0.0 / Analysis.ProgInfo.mapProgInfo

definition:
mapProgInfo:: (a -> b) -> ProgInfo a -> ProgInfo b
mapProgInfo func (ProgInfo map1 map2) =
  ProgInfo (mapWithKey (\_ b->func b) map1) (mapWithKey (\_ b->func b) map2)
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Transforms a program information by applying a function to all
--- information entities.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{ProgInfo}) |-> {ProgInfo}}
name:
mapProgInfo
precedence:
no precedence defined
result-values:
{ProgInfo}
signature:
(a -> b) -> ProgInfo a -> ProgInfo b
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms