Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/reflect/all_test.go

    		// or else reflect will use it instead of having to construct one.
    		// The goal is to test the construction.
    		type Scalar struct{ x uintptr }
    		type Ptr struct{ x *byte }
    		type Ptrscalar struct {
    			*byte
    			uintptr
    		}
    		type Scalarptr struct {
    			uintptr
    			*byte
    		}
    		type Bigptrscalar struct {
    			_ [100]*byte
    			_ [100]uintptr
    		}
    		type Int64 int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top