|
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
quote adds double quotes around the string, and escapes double
quotes and backslashes within the string. This is different from
the behaviour of show:
> putStrLn $ show "\x2200"
"\8704"
> putStrLn $ quote "\x2200"
"∀"
(The code examples above have been tested using version 4.2.0.0 of
the base library.)
|
|
|
| Shows a non-negative integer using the characters - instead of
0-9.
|
|
|
| Adds a final newline if there is not already one.
|
|
|
| Indents every line the given number of steps.
|
|
| Produced by Haddock version 2.6.0 |