Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for interfaceValue (2.05 sec)

  1. src/encoding/gob/debug.go

    		errorf("type id %d not defined", id)
    	}
    	m := deb.uint64()
    	if m != 0 {
    		errorf("expected zero; got %d", m)
    	}
    	deb.fieldValue(indent, id)
    }
    
    // InterfaceValue:
    //
    //	NilInterfaceValue | NonNilInterfaceValue
    func (deb *debugger) interfaceValue(indent tab) {
    	deb.dump("Start of interface value")
    	if nameLen := deb.uint64(); nameLen == 0 {
    		deb.nilInterfaceValue(indent)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. src/encoding/gob/doc.go

    TypeDefinition:
    	int(-typeId) encodingOfWireType
    Value:
    	SingletonValue | StructValue
    SingletonValue:
    	uint(0) FieldValue
    FieldValue:
    	builtinValue | ArrayValue | MapValue | SliceValue | StructValue | InterfaceValue
    InterfaceValue:
    	NilInterfaceValue | NonNilInterfaceValue
    NilInterfaceValue:
    	uint(0)
    NonNilInterfaceValue:
    	ConcreteTypeName TypeSequence InterfaceContents
    ConcreteTypeName:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top