type encoding/json.Decoder
17 uses
encoding/json (current package)
stream.go#L16: type Decoder struct {
stream.go#L33: func NewDecoder(r io.Reader) *Decoder {
stream.go#L34: return &Decoder{r: r}
stream.go#L39: func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
stream.go#L44: func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true }
stream.go#L51: func (dec *Decoder) Decode(v any) error {
stream.go#L85: func (dec *Decoder) Buffered() io.Reader {
stream.go#L91: func (dec *Decoder) readValue() (int, error) {
stream.go#L148: func (dec *Decoder) refill() error {
stream.go#L306: func (dec *Decoder) tokenPrepareForDecode() error {
stream.go#L335: func (dec *Decoder) tokenValueAllowed() bool {
stream.go#L343: func (dec *Decoder) tokenValueEnd() {
stream.go#L370: func (dec *Decoder) Token() (Token, error) {
stream.go#L464: func (dec *Decoder) tokenError(c byte) (Token, error) {
stream.go#L485: func (dec *Decoder) More() bool {
stream.go#L490: func (dec *Decoder) peek() (byte, error) {
stream.go#L512: func (dec *Decoder) InputOffset() int64 {
![]() |
The pages are generated with Golds v0.8.4. (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. |