definition:
|
getModuleProofFiles :: String -> String -> IO [String]
getModuleProofFiles dir mod = do
files <- getDirectoryContents dir
return (filter (isModuleProofFileName mod) files)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Get the names of all files in the directory (first argument) containing
--- proofs of theorems of the module (second argument).
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getModuleProofFiles
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> String -> Prelude.IO [String]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|