Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringInterfacePtr (0.14 sec)

  1. src/runtime/iface.go

    type (
    	uint16InterfacePtr uint16
    	uint32InterfacePtr uint32
    	uint64InterfacePtr uint64
    	stringInterfacePtr string
    	sliceInterfacePtr  []byte
    )
    
    var (
    	uint16Eface any = uint16InterfacePtr(0)
    	uint32Eface any = uint32InterfacePtr(0)
    	uint64Eface any = uint64InterfacePtr(0)
    	stringEface any = stringInterfacePtr("")
    	sliceEface  any = sliceInterfacePtr(nil)
    
    	uint16Type *_type = efaceOf(&uint16Eface)._type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top