Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cvtSliceArrayPtr (0.17 sec)

  1. src/reflect/value.go

    		// and the slice and array types have identical element types."
    		if dst.Kind() == abi.Pointer && dst.Elem().Kind() == abi.Array && src.Elem() == dst.Elem().Elem() {
    			return cvtSliceArrayPtr
    		}
    		// "x is a slice, T is an array type,
    		// and the slice and array types have identical element types."
    		if dst.Kind() == abi.Array && src.Elem() == dst.Elem() {
    			return cvtSliceArray
    		}
    
    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