Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ReaderAt ¶
type ReaderAt interface {
// ReadAt implements the io.ReaderAt interface.
ReadAt([]byte, int64) (int, error)
// At returns the byte at index i.
At(i int) byte
// Len returns the length of the underlying memory-mapped file.
Len() int
// Close closes the reader.
Close() error
}
ReaderAt reads a memory-mapped file.
Source Files
¶
- mmap.go
- mmap_unix.go
Click to show internal directories.
Click to hide internal directories.