definition:
|
transModName :: String -> String
transModName mn = map dot2us mn ++ "DataToXml"
where dot2us c = if c=='.' then '_' else c
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Transform original module name into name of the transformation module.
-- Hierarchical module names are "flattened" by replacing dots with underscores.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
transModName
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|