A faster lexer in Go
It’s been a while since I’ve last rewritten my favorite lexical analyzer 🙂 That post is the last in a series implementing a lexer for the TableGen language in a…
It’s been a while since I’ve last rewritten my favorite lexical analyzer 🙂 That post is the last in a series implementing a lexer for the TableGen language in a…
This post takes a deeper look into how Go compiles method invocations; specifically, how it compiles interface method invocations. Many online descriptions of this process are outdated, because the Go…
Recently, a new set of sorting functions has landed in Go’s golang.org/x/exp/slices package . These functions leverage Go generics to provide a more ergonomic API for sorting (without requiring users…