definition: |
checkAndCallCpmTool :: String -> String -> (String -> IO (Maybe ReplState)) -> IO (Maybe ReplState) checkAndCallCpmTool tool package continue = getCpmTool tool >>= maybe (skipCommand errmsg) continue where errmsg = "'" ++ tool ++ "' not found. Install it by: 'cypm install " ++ package ++ "'!" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Check whether some CPM tool is available, i.e., either in the current -- path or in the CPM bin directory. If it is not available, -- skip the command with an error message how to install the tool from -- the package (specified in the second argument). Otherwise, continue with -- the last argument by passing the name of the CPM tool. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
checkAndCallCpmTool |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> String -> (String -> Prelude.IO (Prelude.Maybe REPL.State.ReplState)) -> 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 |