decoder/loadFloat: No need to explicitly cast v to interface{}
v is concrete type here (float64) and Go automatically converts it to interface{} on call to Decoder.push().
Showing
Please register or sign in to comment
v is concrete type here (float64) and Go automatically converts it to interface{} on call to Decoder.push().