Built-in functions in Go
The builtins are functions in Golang that you can call directly without having to import any package; they just come with the programming language itself. The full list resides in the builtin standard library: https://pkg.go.dev/builtin Many of the builtin functions are widely used, so it’s important to know them by heart. The motivation for this post comes from the fact that Go 1.21.0 has introduced multiple new handy builtins (which doesn’t happen frequently). ...