Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkString (0.09 sec)

  1. test/slicecap.go

    	}
    }
    
    func main() {
    	{
    		x := hello
    		checkString("x", x)
    		checkString("x[5:]", x[5:])
    		checkString("x[five:]", x[five:])
    		checkString("x[5:five]", x[5:five])
    		checkString("x[five:5]", x[five:5])
    		checkString("x[five:five]", x[five:five])
    		checkString("x[1:][2:][2:]", x[1:][2:][2:])
    		y := x[4:]
    		checkString("y[1:]", y[1:])
    	}
    	{
    		x := bytes
    		checkBytes("x", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.9K bytes
    - Viewed (0)
Back to top