mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
916 B
69 lines
916 B
package jsoniter |
|
|
|
type nilAny struct { |
|
baseAny |
|
} |
|
|
|
func (any *nilAny) LastError() error { |
|
return nil |
|
} |
|
|
|
func (any *nilAny) ValueType() ValueType { |
|
return NilValue |
|
} |
|
|
|
func (any *nilAny) MustBeValid() Any { |
|
return any |
|
} |
|
|
|
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) ToUint() uint { |
|
return 0 |
|
} |
|
|
|
func (any *nilAny) ToUint32() uint32 { |
|
return 0 |
|
} |
|
|
|
func (any *nilAny) ToUint64() uint64 { |
|
return 0 |
|
} |
|
|
|
func (any *nilAny) ToFloat32() float32 { |
|
return 0 |
|
} |
|
|
|
func (any *nilAny) ToFloat64() float64 { |
|
return 0 |
|
} |
|
|
|
func (any *nilAny) ToString() string { |
|
return "" |
|
} |
|
|
|
func (any *nilAny) WriteTo(stream *Stream) { |
|
stream.WriteNil() |
|
} |
|
|
|
func (any *nilAny) Parse() *Iterator { |
|
return nil |
|
} |
|
|
|
func (any *nilAny) GetInterface() interface{} { |
|
return nil |
|
}
|
|
|