definition: |
setOnDemandQualification :: [CurryProg] -> Options -> Options setOnDemandQualification mods o = setRelatedMods mods (o { qualification = OnDemand }) |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Sets the qualification method to be used to print identifiers to --- "qualification on demand". --- In this case, an identifier is qualified only if it is necessary --- to avoid a name conflict, e.g., if a local identifier has the same --- names as an imported identifier. Since it is necessary to know --- the names of all identifiers defined in the current module (to be pretty --- printed) and imported from other modules, the first argument --- is the list of modules consisting of the current module and --- all imported modules (including the prelude). --- The current module must always be the head of this list. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
setOnDemandQualification |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[AbstractCurry.Types.CurryProg] -> Options -> Options |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |