func decodeGroupCounts(a []*internal.GroupCount) []pilosa.GroupCount {
	other := make([]pilosa.GroupCount, len(a))
	for i := range a {
		other[i] = pilosa.GroupCount{
			Group: decodeFieldRows(a[i].Group),
			Count: a[i].Count,
		}
	}
	return other
}