definition: |
replCommands :: [(String, ReplState -> String -> IO (Maybe ReplState))] replCommands = [ ("?" , processHelp ) , ("add" , processAdd ) , ("browse" , processBrowse ) , ("cd" , processCd ) , ("compile" , processCompile ) , ("edit" , processEdit ) , ("eval" , processEval ) , ("fork" , processFork ) , ("help" , processHelp ) , ("interface" , processInterface ) , ("load" , processLoad ) , ("modules" , processModules ) , ("programs" , processPrograms ) , ("reload" , processReload ) , ("quit" , processQuit ) , ("save" , processSave ) , ("set" , processSetOption ) , ("source" , processSource ) , ("show" , processShow ) , ("type" , processType ) , ("usedimports", processUsedImports ) ] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- all available REPL commands |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {:}} |
name: |
replCommands |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
[(String, 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 |