mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
98263a7de6
* start fixing up tests * fix up tests + automate with drone * fiddle with linting * messing about with drone.yml * some more fiddling * hmmm * add cache * add vendor directory * verbose * ci updates * update some little things * update sig
70 lines
916 B
Go
70 lines
916 B
Go
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
|
|
}
|