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