definition:
|
genFuncPropIcons :: AnaInfo -> QName -> [BaseHtml]
genFuncPropIcons anainfo fname =
[detPropIcon, nbsp]
where
--(non)deterministically defined property:
detPropIcon =
if getNondetInfo anainfo fname
then href "index.html#nondet_explain" [nondetIcon]
else href "index.html#det_explain" [detIcon]
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--------------------------------------------------------------------------
--- Generates icons for particular properties of functions.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {:}}
|
name:
|
genFuncPropIcons
|
precedence:
|
no precedence defined
|
result-values:
|
{:}
|
signature:
|
CurryDoc.AnaInfo.AnaInfo -> (String, String) -> [HTML.Base.BaseHtml]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|