Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vet/testdata/print/print.go

    // A data type we can print with "%d".
    type percentDStruct struct {
    	a int
    	b []byte
    	c *float64
    }
    
    var percentDV percentDStruct
    
    // A data type we cannot print correctly with "%d".
    type notPercentDStruct struct {
    	a int
    	b []byte
    	c bool
    }
    
    var notPercentDV notPercentDStruct
    
    // A data type we can print with "%s".
    type percentSStruct struct {
    	a string
    	b []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
Back to top