CurryInfo: currydoc-4.0.0 / CurryDoc.Main.makeAbsolute

definition:
makeAbsolute :: String -> IO String
makeAbsolute f =
  if isAbsolute f
    then return f
    else do curdir <- getCurrentDirectory
            return (curdir </> f)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Transform a file path into an absolute file path:
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
makeAbsolute
precedence:
no precedence defined
result-values:
_
signature:
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