type encoding/json.Decoder
17 uses
encoding/json (current package)
stream.go#L14: type Decoder struct {
stream.go#L31: func NewDecoder(r io.Reader) *Decoder {
stream.go#L32: return &Decoder{r: r}
stream.go#L37: func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
stream.go#L42: func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true }
stream.go#L49: func (dec *Decoder) Decode(v any) error {
stream.go#L83: func (dec *Decoder) Buffered() io.Reader {
stream.go#L89: func (dec *Decoder) readValue() (int, error) {
stream.go#L146: func (dec *Decoder) refill() error {
stream.go#L304: func (dec *Decoder) tokenPrepareForDecode() error {
stream.go#L333: func (dec *Decoder) tokenValueAllowed() bool {
stream.go#L341: func (dec *Decoder) tokenValueEnd() {
stream.go#L368: func (dec *Decoder) Token() (Token, error) {
stream.go#L462: func (dec *Decoder) tokenError(c byte) (Token, error) {
stream.go#L483: func (dec *Decoder) More() bool {
stream.go#L488: func (dec *Decoder) peek() (byte, error) {
stream.go#L510: func (dec *Decoder) InputOffset() int64 {
![]() |
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. |