You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type SC[E any] interface {
[]E // ~[]E ???
}
func DoubleDefined[S SC[E], E constraints.Number](s S) S {
r := make(S, len(s))
for i, v := range s {
r[i] = v + v
}
return r
}
var V2 = DoubleDefined[MySlice, int](MySlice{1})
The text was updated successfully, but these errors were encountered:
文档 Go 泛型的 3 个核心设计,你学会了吗? 中的Code是不是有误。
The text was updated successfully, but these errors were encountered: