Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _DoubleElems (0.13 sec)

  1. test/typeparam/double.go

    	arg := MySlice{1, 2, 3}
    	want := MySlice{2, 4, 6}
    	got := _DoubleElems[MySlice, int](arg)
    	if !reflect.DeepEqual(got, want) {
    		panic(fmt.Sprintf("got %s, want %s", got, want))
    	}
    
    	// constraint type inference
    	got = _DoubleElems[MySlice](arg)
    	if !reflect.DeepEqual(got, want) {
    		panic(fmt.Sprintf("got %s, want %s", got, want))
    	}
    
    	got = _DoubleElems(arg)
    	if !reflect.DeepEqual(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top