type io.OffsetWriter
6 uses
io (current package)
io.go#L562: type OffsetWriter struct {
io.go#L570: func NewOffsetWriter(w WriterAt, off int64) *OffsetWriter {
io.go#L571: return &OffsetWriter{w, off, off}
io.go#L574: func (o *OffsetWriter) Write(p []byte) (n int, err error) {
io.go#L580: func (o *OffsetWriter) WriteAt(p []byte, off int64) (n int, err error) {
io.go#L589: func (o *OffsetWriter) Seek(offset int64, whence int) (int64, error) {
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |