Beispiel #1
0
// UnmarshalEasyJSON does JSON unmarshaling using easyjson interface.
func (v *Uint32) UnmarshalEasyJSON(l *jlexer.Lexer) {
	if l.IsNull() {
		l.Skip()
		*v = Uint32{}
	} else {
		v.V = l.Uint32()
		v.Defined = true
	}
}