Source File
any_uint64.go
Belonging Package
github.com/json-iterator/go
package jsoniterimport ()type uint64Any struct {baseAnyval uint64}func ( *uint64Any) () error {return nil}func ( *uint64Any) () ValueType {return NumberValue}func ( *uint64Any) () Any {return}func ( *uint64Any) () bool {return .val != 0}func ( *uint64Any) () int {return int(.val)}func ( *uint64Any) () int32 {return int32(.val)}func ( *uint64Any) () int64 {return int64(.val)}func ( *uint64Any) () uint {return uint(.val)}func ( *uint64Any) () uint32 {return uint32(.val)}func ( *uint64Any) () uint64 {return .val}func ( *uint64Any) () float32 {return float32(.val)}func ( *uint64Any) () float64 {return float64(.val)}func ( *uint64Any) () string {return strconv.FormatUint(.val, 10)}func ( *uint64Any) ( *Stream) {.WriteUint64(.val)}func ( *uint64Any) () *Iterator {return nil}func ( *uint64Any) () 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. |