type encoding/binary.decoder
13 uses
encoding/binary (current package)
binary.go#L255: d := &decoder{order: order, buf: make([]byte, size)}
binary.go#L462: type decoder coder
binary.go#L465: func (d *decoder) bool() bool {
binary.go#L480: func (d *decoder) uint8() uint8 {
binary.go#L491: func (d *decoder) uint16() uint16 {
binary.go#L502: func (d *decoder) uint32() uint32 {
binary.go#L513: func (d *decoder) uint64() uint64 {
binary.go#L524: func (d *decoder) int8() int8 { return int8(d.uint8()) }
binary.go#L528: func (d *decoder) int16() int16 { return int16(d.uint16()) }
binary.go#L532: func (d *decoder) int32() int32 { return int32(d.uint32()) }
binary.go#L536: func (d *decoder) int64() int64 { return int64(d.uint64()) }
binary.go#L540: func (d *decoder) value(v reflect.Value) {
binary.go#L684: func (d *decoder) skip(v reflect.Value) {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |