Source File
any_int64.go
Belonging Package
github.com/json-iterator/go
package jsoniterimport ()type int64Any struct {baseAnyval int64}func ( *int64Any) () error {return nil}func ( *int64Any) () ValueType {return NumberValue}func ( *int64Any) () Any {return}func ( *int64Any) () bool {return .val != 0}func ( *int64Any) () int {return int(.val)}func ( *int64Any) () int32 {return int32(.val)}func ( *int64Any) () int64 {return .val}func ( *int64Any) () uint {return uint(.val)}func ( *int64Any) () uint32 {return uint32(.val)}func ( *int64Any) () uint64 {return uint64(.val)}func ( *int64Any) () float32 {return float32(.val)}func ( *int64Any) () float64 {return float64(.val)}func ( *int64Any) () string {return strconv.FormatInt(.val, 10)}func ( *int64Any) ( *Stream) {.WriteInt64(.val)}func ( *int64Any) () *Iterator {return nil}func ( *int64Any) () interface{} {return .val}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |