Composite keys

September 22, 2023

This week’s episode of the Cup o’ Go podcast is out! Keep up with the Go community in just 15 minutes per week! Have a listen!


Composite literals

… The key is interpreted as a field name for struct literals, an index for array and slice literals, and a key for map literals. For map literals, all elements must have a key.

If you’ve written any Go code, you probably already know about keys in maps:

var x = map[string]float64{
	"key1": 1.0,
	"key2": 2.0,
	"keyπ": 3.14159,
}

What’s maybe slightly less obvious, but not surprising, is that the field names in structs are also called keys, in a composite literal:

var x = struct {
	Key1 string
	Key2 int
}{
	Key1: "neat",
	Key2: 15,
}

What’s less known… and in fact, I didn’t even realize it, or I had forgotten, until I was preparing to write this… is that slice and array literals can include keys as well. In such a case, the keys must be integers, and indicate the index of the value. This allows you to specify slice/array values out of order, if for some reason you wish to, or to sparsely populate a slice or array.

var x = []string{
	1: "foo",
	5: "bar",
	2: "baz",
}

fmt.Println(strings.Join(x,",")) // Prints: ,foo,baz,,,bar

Quotes from The Go Programming Language Specification Version of August 2, 2023


Share this

Direct to your inbox, daily. I respect your privacy .

Unsure? Browse the archive .

Related Content


Assignability of composite components

Composite literals … The types of the elements and keys must be [assignable(https://go.dev/ref/spec#Assignability)] to the respective field, element, and key types of type T; there is no additional conversion. This shouldn’t be surprising, but let’s examine the implications just the same. type myStr string s := myStr("my string") var x = map[int]string{ 3: "oink", // Valid, untyped numeric constant 3 is assignable to an int. int(4): "quack", // Valid, int(4) is of type int int64(12): "moo", // Invalid, int64(12) is not converted to int 8: s, // Invalid, type myStr is type string 9: string(s), // Valid; explicit conversion to type string } Quotes from The Go Programming Language Specification Version of August 2, 2023


Composite literals

Earlier this year, near the beginning of this series on the Go spec, we went through literal representations of all of the basic types in Go: ints, strings, etc. If this were an Intro to Go style book, the very next section would have been on composite literals. But it’s not. So we had to wait nearly 6 months to get to that topic… But here we are, at long last!


Array and slice literals

Composite literals … For array and slice literals the following rules apply: Each element has an associated integer index marking its position in the array. An element with a key uses the key as its index. The key must be a non-negative constant representable by a value of type int; and if it is typed it must be of integer type. An element without a key uses the previous element’s index plus one.

Get daily content like this in your inbox!

Subscribe