definition: |
extractRCArgs :: [String] -> ([String],[(String,String)]) extractRCArgs args = let (dargs,otherargs) = partition ("-D" `isPrefixOf`) args in (otherargs, map splitDefs (map (drop 2) dargs)) where splitDefs darg = case break (== '=') darg of (var,_:val) -> (var,val) _ -> (darg,"") |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Extract from a list of command-line arguments rc properties --- of the from "-Dprop=val" and return the remaining arguments --- and the extracted properties. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {(,)}} |
name: |
extractRCArgs |
precedence: |
no precedence defined |
result-values: |
{(,)} |
signature: |
[String] -> ([String], [(String, String)]) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |