definition: |
genFunctionIndexPage :: (String,[BaseHtml]) -> DocOptions -> String -> [FC.FuncDecl] -> IO () genFunctionIndexPage homeref opts docdir funs = do putStrLn $ "Writing operation index page to '" ++ docdir ++ "/findex.html'..." simplePage homeref "Index to all operations" Nothing allConsFuncsMenu (htmlFuncIndex opts (sortNames expfuns)) >>= writeFile (docdir++"/findex.html") where expfuns = map FCG.funcName $ filter ((== FC.Public) . FCG.funcVisibility) funs |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
----------------------------------------------------------------------- generate the function index page for the documentation directory: |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_,_) |-> _} |
name: |
genFunctionIndexPage |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(String, [HTML.Base.BaseHtml]) -> CurryDoc.Options.DocOptions -> String -> [FlatCurry.Types.FuncDecl] -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |