Explore >> Select a destination


You are here

golangbot.com
| | lukesingham.com
1.2 parsecs away

Travel
| | These are my summary notes of 'A Tour of Go' - which is meant for people who are familiar with programming to have a quick tour
| | www.integralist.co.uk
1.0 parsecs away

Travel
| | I found myself recently trying to recall specific details of how slices work when needing to do something that meant I wanted to not mutate the underlying array data structure of the slice I was working with. Now the reason for why I wanted to do that isn't important. What's motivating this write-up is my want for a good reference document (not saying the official go blog isn't a good reference, but I have my own things I like to focus in on in these situations).
| | divan.dev
1.8 parsecs away

Travel
| | [AI summary] The author explains how understanding Go's internal data structure representations and memory management can help developers avoid common language gotchas like slice sharing and interface nil confusion.
| | golangbot.com
23.6 parsecs away

Travel
| A function that can accept a variable number of arguments is called a variadic function. Learn how to create variadic functions in Go with examples.