Hacker News with Generative AI: Generics

Good-bye core types; Hello Go as we know and love it (go.dev)
The Go 1.18 release introduced generics and with that a number of new features, including type parameters, type constraints, and new concepts such as type sets.
Implementing Generic Types in C (btmc.substack.com)
One of the most annoying things about programming in C is the lack of support for generic types, also known as parametric polymorphism.
Comptime as Configuration (openmymind.net)
If you look at my httpz library, you'll notice that httpz.Server(T) is a generic. The type passed to Server serves two purposes. The first is to support an application-specific context - whatever instance of T passed into Server(T).init gets passed back to your custom HTTP handlers.
Type-erased generic functions for C: A modest non-proposal (duriansoftware.com)
Earlier this year, I read Martin Uecker's proposal N3212 to add parametric polymorphism to C.
What's in an (Alias) Name? (go.dev)
This post is about generic alias types, what they are, and why we need them.
Improving _Generic in C2y (thephd.dev)
'Skinny jabs': weight-loss drugs set for new boom as generic versions emerge (theguardian.com)
Zig-style generics are not well-suited for most languages (2022) (typesanitizer.com)
Writing generic collection types in Go: the missing documentation (dolthub.com)
An introduction to advanced Rust traits and generics (shuttle.rs)
Type-Enforced Access Control with Go Generics (render.com)