Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for typesMustMatch (0.31 sec)

  1. src/reflect/value.go

    //
    // Deprecated: Use unsafe.Slice or unsafe.SliceData instead.
    type SliceHeader struct {
    	Data uintptr
    	Len  int
    	Cap  int
    }
    
    func typesMustMatch(what string, t1, t2 Type) {
    	if t1 != t2 {
    		panic(what + ": " + t1.String() + " != " + t2.String())
    	}
    }
    
    // arrayAt returns the i-th element of p,
    // an array whose elements are eltSize bytes wide.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top