CurryInfo: currydoc-4.0.0 / CurryDoc.Html.genFunctionIndexPage

definition: Info
 
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: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
-----------------------------------------------------------------------
generate the function index page for the documentation directory:
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_) |-> _}
name: Info
 genFunctionIndexPage
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (String, [HTML.Base.BaseHtml]) -> CurryDoc.Options.DocOptions -> String
-> [FlatCurry.Types.FuncDecl] -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term