Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SliceString (0.12 sec)

  1. test/codegen/spectre.go

    	return x[i]
    }
    
    func IndexSlice(x []float64, i int) float64 {
    	// amd64:`CMOVQ(LS|CC)`
    	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