definition: |
removeDash :: String -> String removeDash s = let ds = dropWhile isSpace s in if take 2 ds == "- " then dropWhile isSpace (drop 2 ds) else ds |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- remove initial dash sign (of a parameter comment) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
removeDash |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
String -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |