definition: |
setOptionPath :: ReplState -> String -> IO (Maybe ReplState) setOptionPath rst args = do ipath <- if null args then defaultImportPaths rst else defaultImportPathsWith rst args return (Just rst { importPaths = ipath }) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
setOptionPath |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
REPL.State.ReplState -> String -> Prelude.IO (Prelude.Maybe REPL.State.ReplState) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |