Go theorytheory 0/50 · 0%
Types · easy

10. Structs

Value types with named fields.

Structs group fields and are values, so assignment copies them. Methods can be defined on value or pointer receivers; pointer receivers are needed to mutate. Struct tags add metadata used by encoding packages such as encoding/json.

Check your understanding

  1. 1. Which receiver can mutate the struct?

  2. 2. Struct tags are used by…