Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DecodeValue (0.09 sec)

  1. src/encoding/gob/decoder.go

    // If v is the zero reflect.Value (v.Kind() == Invalid), DecodeValue discards the value.
    // Otherwise, it stores the value into v. In that case, v must represent
    // a non-nil pointer to data or be an assignable reflect.Value (v.CanSet())
    // If the input is at EOF, DecodeValue returns [io.EOF] and
    // does not modify v.
    func (dec *Decoder) DecodeValue(v reflect.Value) error {
    	if v.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top