CurryInfo: currydoc-4.0.0 / CurryDoc.Html.removeDash

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