go.io
Go to Haxe source-to-source compiler
.. | |
---|---|
ByteReader | ByteReader is the interface that wraps the ReadByte method. |
ByteScanner | ByteScanner is the interface that adds the UnreadByte method to the basic ReadByte method. |
ByteWriter | ByteWriter is the interface that wraps the WriteByte method. |
Closer | Closer is the interface that wraps the basic Close method. |
Io | Package io provides basic interfaces to I/O primitives. Its primary job is to wrap existing implementations of such primitives, such as those in package os, into shared public interfaces that abstract the functionality, plus some other related primitives. |
LimitedReader | A LimitedReader reads from R but limits the amount of data returned to just N bytes. Each call to Read updates N to reflect the new amount remaining. Read returns EOF when N <= 0 or when the underlying R returns EOF. |
LimitedReaderPointer | |
LimitedReaderPointerPointer | |
LimitedReaderPointer_asInterface | |
LimitedReader_asInterface | |
OffsetWriter | An OffsetWriter maps writes at offset base to offset base+off in the underlying writer. |
OffsetWriterPointer | |
OffsetWriterPointerPointer | |
OffsetWriterPointer_asInterface | |
OffsetWriter_asInterface | |
PipeReader | A PipeReader is the read half of a pipe. |
PipeReaderPointer | |
PipeReaderPointerPointer | |
PipeReaderPointer_asInterface | |
PipeReader_asInterface | |
PipeWriter | A PipeWriter is the write half of a pipe. |
PipeWriterPointer | |
PipeWriterPointerPointer | |
PipeWriterPointer_asInterface | |
PipeWriter_asInterface | |
ReadCloser | ReadCloser is the interface that groups the basic Read and Close methods. |
ReadSeekCloser | ReadSeekCloser is the interface that groups the basic Read, Seek and Close methods. |
ReadSeeker | ReadSeeker is the interface that groups the basic Read and Seek methods. |
ReadWriteCloser | ReadWriteCloser is the interface that groups the basic Read, Write and Close methods. |
ReadWriteSeeker | ReadWriteSeeker is the interface that groups the basic Read, Write and Seek methods. |
ReadWriter | ReadWriter is the interface that groups the basic Read and Write methods. |
Reader | Reader is the interface that wraps the basic Read method. |
ReaderAt | ReaderAt is the interface that wraps the basic ReadAt method. |
ReaderFrom | ReaderFrom is the interface that wraps the ReadFrom method. |
RuneReader | RuneReader is the interface that wraps the ReadRune method. |
RuneScanner | RuneScanner is the interface that adds the UnreadRune method to the basic ReadRune method. |
SectionReader | SectionReader implements Read, Seek, and ReadAt on a section of an underlying ReaderAt. |
SectionReaderPointer | |
SectionReaderPointerPointer | |
SectionReaderPointer_asInterface | |
SectionReader_asInterface | |
Seeker | Seeker is the interface that wraps the basic Seek method. |
StringWriter | StringWriter is the interface that wraps the WriteString method. |
WriteCloser | WriteCloser is the interface that groups the basic Write and Close methods. |
WriteSeeker | WriteSeeker is the interface that groups the basic Write and Seek methods. |
Writer | Writer is the interface that wraps the basic Write method. |
WriterAt | WriterAt is the interface that wraps the basic WriteAt method. |
WriterTo | WriterTo is the interface that wraps the WriteTo method. |