Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ignoreMap (0.34 sec)

  1. src/encoding/gob/decode.go

    	if n := state.decodeUint(); n != uint64(length) {
    		errorf("length mismatch in ignoreArray")
    	}
    	dec.ignoreArrayHelper(state, elemOp, length)
    }
    
    // ignoreMap discards the data for a map value with no destination.
    func (dec *Decoder) ignoreMap(state *decoderState, keyOp, elemOp decOp) {
    	n := int(state.decodeUint())
    	keyInstr := &decInstr{keyOp, 0, nil, errors.New("no error")}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
Back to top