definition: |
getModInfo :: String -> IO (Category,String,String) getModInfo modname = do mmodsrc <- lookupModuleSourceInLoadPath modname case mmodsrc of Nothing -> error $ "Source code of module '"++modname++"' not found!" Just (_,progname) -> do modcmts <- readModuleComment progname let (modcmt,catcmts) = splitComment modcmts category = readCategory $ getCommentType "category" catcmts return (category,modname,firstPassage modcmt) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getModInfo |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO (CurryDoc.Read.Category, String, String) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |