definition: |
ifNotNull :: [a] -> ([a] -> [b]) -> [b] ifNotNull cmt genDoc | null cmt = [] | otherwise = genDoc cmt |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- generate the html documentation for given comments ("param", "return",...) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
ifNotNull |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[a] -> ([a] -> [b]) -> [b] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |