The JSON specification states that objects keys must be strings. However, ffjson will accept object keys that are not strings. This can be seen in the attached test case. (Generated code not attached.)
foo.go
package ffjsontest
type Foo struct {
Values map[uint64]string
}
The JSON specification states that objects keys must be strings. However, ffjson will accept object keys that are not strings. This can be seen in the attached test case. (Generated code not attached.)
foo.go
foo_test.go