definition: |
getSourceFileTime :: String -> IO (String,ClockTime) getSourceFileTime moduleName = do (_,fileName) <- findModuleSourceInLoadPath moduleName time <- getModificationTime fileName return (moduleName,time) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Get timestamp of a Curry source module file (together with the module name) |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getSourceFileTime |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO (String, Data.Time.ClockTime) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |