definition:
|
urlOfEntity :: DocOptions -> String -> QName -> String
urlOfEntity opts mod (mtc,tc) =
if mod == mtc
then "#" ++ tc
else docURL opts mtc ++ ".html#" ++ tc
|
demand:
|
arguments 2 3
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Returns the URL of a qualified program entity w.r.t. the current module.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{(,)}) |-> _}
|
name:
|
urlOfEntity
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CurryDoc.Options.DocOptions -> String -> (String, String) -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|