std.io
Types for core IO functionality.
The IO module provides the basic building blocks for IO operations such as reading from and writing to a file.
Traits
BufferedRead | A | |
Read | A type data can be read from (e.g. a File). | |
Seek | Trait for seeking to a given offset in a stream of bytes. | |
Size | Trait for retrieving the size of an IO object. | |
Write | A type data can be written to (e.g. a File). |
Classes
Buffer | An in-memory buffer that supports reads and seeks. | |
BufferedReader | A type for performing buffered reads from a | |
Error | An error type for I/O operations. |