| 332 | func (enc *jsonEncoder) AppendComplex64(v complex64) { enc.appendComplex(complex128(v), 32) } |
| 333 | func (enc *jsonEncoder) AppendComplex128(v complex128) { enc.appendComplex(complex128(v), 64) } |
| 334 | func (enc *jsonEncoder) AppendFloat64(v float64) { enc.appendFloat(v, 64) } |
| 335 | func (enc *jsonEncoder) AppendFloat32(v float32) { enc.appendFloat(float64(v), 32) } |
| 336 | func (enc *jsonEncoder) AppendInt(v int) { enc.AppendInt64(int64(v)) } |
| 337 | func (enc *jsonEncoder) AppendInt32(v int32) { enc.AppendInt64(int64(v)) } |