Articles by tag: generics
Zero-allocation IO for Go contests
Six solutions for fast input-output in Go without allocations: bufio.Reader, generics, scratch-buffers. Benchmarks, code, inline-utility. For middle/senior developers.
Compiler from scratch: lexer parser type inference
Experience creating a compiler for my own language: from lexer to LLVM IR. Handling generics, lambdas, linking. For middle/senior developers. Learn approaches without deep knowledge.
HKT in TypeScript: emulation and practice
Learn how to emulate Higher-Kinded Types in TypeScript without code duplication. Kind-mappings, hkt-toolbelt libraries, implementation challenges. For middle/senior dev.