GoのGenerics
Go v1.18
e.g.
code:go
func min
T ~int|~float64
(x, y T) T {
if x < y {
return x
}
return y
}
https://future-architect.github.io/articles/20220209a/
https://zenn.dev/nobishii/articles/type_param_intro
https://twitter.com/yuroyoro/status/787886850912362496