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#L303: func (dec *Decoder) tokenPrepareForDecode() error {
stream.go#L332: func (dec *Decoder) tokenValueAllowed() bool {
stream.go#L340: func (dec *Decoder) tokenValueEnd() {
stream.go#L367: func (dec *Decoder) Token() (Token, error) {
stream.go#L461: func (dec *Decoder) tokenError(c byte) (Token, error) {
stream.go#L482: func (dec *Decoder) More() bool {
stream.go#L487: func (dec *Decoder) peek() (byte, error) {
stream.go#L509: func (dec *Decoder) InputOffset() int64 {
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. |