Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ET2 (0.02 sec)

  1. src/encoding/gob/encoder_test.go

    	A int
    	B string
    }
    
    type ET2 struct {
    	X string
    }
    
    type ET1 struct {
    	A    int
    	Et2  *ET2
    	Next *ET1
    }
    
    // Like ET1 but with a different name for a field
    type ET3 struct {
    	A             int
    	Et2           *ET2
    	DifferentNext *ET1
    }
    
    // Like ET1 but with a different type for a field
    type ET4 struct {
    	A    int
    	Et2  float64
    	Next int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top