definition:
|
getDefaultPath :: CConfig -> IO String
getDefaultPath cc = do
currypath <- getEnv "CURRYPATH"
return $ case lookup "path" (ccProps cc) of
Just value -> if all isSpace value
then currypath
else if null currypath then value
else currypath ++ ':' : value
Nothing -> currypath
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Gets the default load path from the property file (added at the end
--- of CURRYPATH).
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getDefaultPath
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CConfig -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|