|
| System.IO.UTF8 | | Portability | portable | | Stability | experimental | | Maintainer | emertens@galois.com |
|
|
|
| Description |
| String IO preserving UTF8 encoding.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| The print function outputs a value of any printable type to the
standard output device. This function differs from the
System.IO.print in that it preserves any UTF8 encoding of the shown value.
|
|
|
| Write a UTF8 string to the standard output device
|
|
|
| The same as putStr, but adds a newline character.
|
|
|
| Read a UTF8 line from the standard input device
|
|
|
| The readLn function combines getLine and readIO, preserving UTF8
|
|
|
|
|
|
|
| The readFile function reads a file and
returns the contents of the file as a UTF8 string.
The file is read lazily, on demand, as with getContents.
|
|
|
| The computation writeFile file str function writes the UTF8 string str,
to the file file.
|
|
|
| The computation appendFile file str function appends the UTF8 string str,
to the file file.
|
|
|
|
|
| Lazily read stdin as a UTF8 string.
|
|
|
| Read a UTF8 line from a Handle
|
|
|
| Lazily read a UTF8 string from a Handle
|
|
|
| Write a UTF8 string to a Handle.
|
|
|
| Write a UTF8 string to a Handle, appending a newline.
|
|
| Produced by Haddock version 2.6.0 |