1
0
mirror of https://github.com/json-iterator/go.git synced 2024-11-27 08:30:57 +02:00
json-iterator/feature_any_nil.go

53 lines
707 B
Go
Raw Normal View History

2017-01-22 17:29:48 +02:00
package jsoniter
type nilAny struct {
baseAny
2017-01-22 17:29:48 +02:00
}
func (any *nilAny) LastError() error {
return nil
}
2017-01-26 10:24:01 +02:00
func (any *nilAny) ValueType() ValueType {
return Nil
}
2017-01-22 17:29:48 +02:00
func (any *nilAny) ToBool() bool {
return false
}
func (any *nilAny) ToInt() int {
return 0
}
func (any *nilAny) ToInt32() int32 {
return 0
}
func (any *nilAny) ToInt64() int64 {
return 0
}
func (any *nilAny) ToFloat32() float32 {
return 0
}
func (any *nilAny) ToFloat64() float64 {
return 0
}
func (any *nilAny) ToString() string {
2017-01-26 08:56:31 +02:00
return "nil"
}
func (any *nilAny) WriteTo(stream *Stream) {
stream.WriteNil()
2017-01-26 09:40:38 +02:00
}
func (any *nilAny) Parse() *Iterator {
return nil
2017-01-26 09:44:10 +02:00
}
func (any *nilAny) GetInterface() interface{} {
return nil
2017-01-24 16:56:18 +02:00
}