Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SliceSlice (0.13 sec)

  1. test/ken/sliceslice.go

    Rob Pike <******@****.***> 1330061064 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.7K bytes
    - Viewed (0)
  2. test/codegen/spectre.go

    	return x[i]
    }
    
    func SliceArray(x *[10]int, i, j int) []int {
    	// amd64:`CMOVQHI`
    	return x[i:j]
    }
    
    func SliceString(x string, i, j int) string {
    	// amd64:`CMOVQHI`
    	return x[i:j]
    }
    
    func SliceSlice(x []float64, i, j int) []float64 {
    	// amd64:`CMOVQHI`
    	return x[i:j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 734 bytes
    - Viewed (0)
Back to top