Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for Sizes (0.03 sec)

  1. src/reflect/all_test.go

    	{V(MyStruct2{}), V(MyStruct1{})},
    
    	// can convert *byte and *MyByte
    	{V((*byte)(nil)), V((*MyByte)(nil))},
    	{V((*MyByte)(nil)), V((*byte)(nil))},
    
    	// cannot convert mismatched array sizes
    	{V([2]byte{}), V([2]byte{})},
    	{V([3]byte{}), V([3]byte{})},
    	{V(MyBytesArray0{}), V([0]byte{})},
    	{V([0]byte{}), V(MyBytesArray0{})},
    
    	// cannot convert other instances
    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