1
0
mirror of https://github.com/json-iterator/go.git synced 2025-06-15 22:50:24 +02:00

implement Any WriteTo

This commit is contained in:
Tao Wen
2017-01-26 14:56:31 +08:00
parent 9b587c0f22
commit 4d7e181f9f
10 changed files with 38 additions and 9 deletions

View File

@ -64,4 +64,8 @@ func (any *floatLazyAny) ToFloat64() float64 {
func (any *floatLazyAny) ToString() string {
return *(*string)(unsafe.Pointer(&any.buf))
}
func (any *floatLazyAny) WriteTo(stream *Stream) {
stream.Write(any.buf)
}