CurryInfo: verify-non-fail-2.0.0 / Verify.WithSMT.decodeSpecialChars

definition: Info
 
decodeSpecialChars :: String -> String
decodeSpecialChars [] = []
decodeSpecialChars (c:cs)
  | c == '%'  = let n = case readHex (take 2 cs) of
                          [(h,"")] -> h
                          _        -> 0
                in chr n : decodeSpecialChars (drop 2 cs)
  | otherwise = c : decodeSpecialChars cs
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Translates urlencoded string into equivalent ASCII string.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]}) |-> {[]} || ({:}) |-> {:}}
name: Info
 decodeSpecialChars
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
 possibly non-reducible on same data term