CurryInfo: flatcurry-annotated-3.3.0 / FlatCurry.Annotated.Pretty.showEscape

definition: Info
 
showEscape :: Char -> String
showEscape c
  | o <   10  = "'\\00" ++ show o ++ "'"
  | o <   32  = "'\\0"  ++ show o ++ "'"
  | o == 127  = "'\\127'"
  | otherwise = show c
  where o = ord c
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Escape character literal
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 showEscape
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Char -> 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