Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for uint32InterfacePtr (0.18 sec)

  1. src/runtime/iface.go

    // and then extract the type word to use as needed.
    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("")
    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