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