mirror of
https://github.com/golang/go
synced 2024-11-23 08:40:08 -07:00
0fbde54ea6
- Handle generic function calling itself or another generic function in stenciling. This is easy - after it is created, just scan an instantiated generic function for function instantiations (that may needed to be stenciled), just like non-generic functions. The types in the function instantiation will already have been set by the stenciling. - Handle OTYPE nodes in subster.node() (allows for generic type conversions). - Eliminated some duplicated work in subster.typ(). - Added new test case fact.go that tests a generic function calling itself, and simple generic type conversions. - Cause an error if a generic function is to be exported (which we don't handle yet). - Fixed some suggested changes in the add.go test case that I missed in the last review. Change-Id: I5d61704254c27962f358d5a3d2e0c62a5099f148 Reviewed-on: https://go-review.googlesource.com/c/go/+/290469 Trust: Dan Scales <danscales@google.com> Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org>
51 lines
945 B
Go
51 lines
945 B
Go
// run -gcflags=-G=3
|
|
|
|
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func sum[T interface{ type int, float64 }](vec []T) T {
|
|
var sum T
|
|
for _, elt := range vec {
|
|
sum = sum + elt
|
|
}
|
|
return sum
|
|
}
|
|
|
|
func abs(f float64) float64 {
|
|
if f < 0.0 {
|
|
return -f
|
|
}
|
|
return f
|
|
}
|
|
|
|
func main() {
|
|
vec1 := []int{3, 4}
|
|
vec2 := []float64{5.8, 9.6}
|
|
got := sum[int](vec1)
|
|
want := vec1[0] + vec1[1]
|
|
if got != want {
|
|
panic(fmt.Sprintf("Got %d, want %d", got, want))
|
|
}
|
|
got = sum(vec1)
|
|
if want != got {
|
|
panic(fmt.Sprintf("Got %d, want %d", got, want))
|
|
}
|
|
|
|
fwant := vec2[0] + vec2[1]
|
|
fgot := sum[float64](vec2)
|
|
if abs(fgot - fwant) > 1e-10 {
|
|
panic(fmt.Sprintf("Got %f, want %f", fgot, fwant))
|
|
}
|
|
fgot = sum(vec2)
|
|
if abs(fgot - fwant) > 1e-10 {
|
|
panic(fmt.Sprintf("Got %f, want %f", fgot, fwant))
|
|
}
|
|
}
|