definition:
|
orgQName :: QName -> QName
orgQName (mn,fn)
| publicSuffix `isSuffixOf` mn
= (stripSuffix mn publicSuffix, fn)
| publicdetSuffix `isSuffixOf` mn
= (stripSuffix mn publicdetSuffix, fn)
| otherwise = (mn,fn)
where
publicSuffix = "_PUBLIC"
publicdetSuffix = "_PUBLICDET"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Transforms a possibly changed qualified name, e.g., `("Mod_PUBLIC","f")`
-- or `("Mod_PUBLICDET","f")`, back to its original name by removing the
-- module suffix.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
orgQName
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
(String, String) -> (String, String)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|