|
|
|
|
|
by e79
4078 days ago
|
|
This demonstrates the power of Go generators. We're seeing what are typically language features such as generics and debugging being implemented before runtime using code generation. The result is more functionality without an overall increase in runtime size or decrease in runtime performance. It's unusual and it's opinionated, but it works. |
|
Monomorphization is a bog-standard implementation technique for generics. It's not at all unusual.