definition: |
getFlatCurryFileTime :: String -> IO (String,Maybe ClockTime) getFlatCurryFileTime modname = lookupFlatCurryFileInLoadPath modname >>= maybe (return (modname, Nothing)) (\fcyFileName -> do ftime <- getModificationTime fcyFileName return (modname, Just ftime)) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Get timestamp of FlatCurry file (together with the module name) |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getFlatCurryFileTime |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO (String, Prelude.Maybe Data.Time.ClockTime) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |