November 2015
Intermediate to advanced
264 pages
7h 30m
English
In this chapter
It’s difficult to write programs that don’t need to store and read collections of data. If you use databases or files, or access the web, you need a way to handle the data you receive and send. Go has three different data structures that allow you to manage collections of data: arrays, slices, and maps. These data structures are baked into the language and used throughout the standard library. Once you learn how these data structures work, programming in Go will become fun, fast, and flexible.
It makes sense to start with arrays because ...
Read now
Unlock full access