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