CurryInfo: currydoc-4.0.0 / CurryDoc.TeX.genTexFunc

definition:
genTexFunc :: DocOptions -> [(SourceLine,String)] -> _ -> FuncDecl -> String
genTexFunc docopts progcmts _ (Func (_,fname) _ fvis ftype _) =
  if fvis==Public && not (classOperations fname)
  then "\\curryfunctionstart{" ++ string2tex fname ++ "}{" ++
       "\\curryfuncsig{" ++ string2tex (showId fname) ++ "}{" ++
         showTexType False (stripForall ftype) ++ "}}\n" ++
         htmlString2Tex docopts
               (fst (splitComment (getFuncComment fname progcmts))) ++
       "\\curryfunctionstop\n"
  else ""
 where
  -- strip initial forall type quantifiers:
  stripForall texp = case texp of
    ForallType _ te -> te
    _               -> texp

  classOperations fn = take 6 fn `elem` ["_impl#","_inst#"]
                    || take 5 fn == "_def#" || take 7 fn == "_super#"
demand:
argument 4
deterministic:
deterministic operation
documentation:
-- generate short HTML documentation for a function if it is exported
-- and not an internal operation to implement type classes:
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,{Func}) |-> _}
name:
genTexFunc
precedence:
no precedence defined
result-values:
_
signature:
CurryDoc.Options.DocOptions -> [(CurryDoc.Read.SourceLine, String)] -> a
-> FlatCurry.Types.FuncDecl -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term