definition: |
readRcOption :: String -> Either String (String,String) readRcOption s = let (option,value) = break (=='=') s in if null value then Left $ "Error in option definition: '=' missing" else Right $ (option, stripEnclosing '"' '"' (tail value)) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
readRcOption |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.Either String (String, String) |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |