You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EVREVRTest`json:"evr,omitempty" yaml:"evr,omitempty"`// EVR version comparison
This could be defined as EVR *EVRTest
The benefit here is if set nil, omitempty would behave correctly and not include this in resulting JSON documents. Currently, the types when marshaled can include a lot of useless sections, and being able to omit these correctly if not required would make them much smaller.
The text was updated successfully, but these errors were encountered:
As an example:
scribe/test.go
Line 31 in 69bc11b
This could be defined as
EVR *EVRTest
The benefit here is if set nil, omitempty would behave correctly and not include this in resulting JSON documents. Currently, the types when marshaled can include a lot of useless sections, and being able to omit these correctly if not required would make them much smaller.
The text was updated successfully, but these errors were encountered: