type io.OffsetWriter
6 uses
io (current package)
io.go#L570: type OffsetWriter struct {
io.go#L578: func NewOffsetWriter(w WriterAt, off int64) *OffsetWriter {
io.go#L579: return &OffsetWriter{w, off, off}
io.go#L582: func (o *OffsetWriter) Write(p []byte) (n int, err error) {
io.go#L588: func (o *OffsetWriter) WriteAt(p []byte, off int64) (n int, err error) {
io.go#L597: func (o *OffsetWriter) Seek(offset int64, whence int) (int64, error) {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |