Source File
any_bool.go
Belonging Package
github.com/json-iterator/go
package jsonitertype trueAny struct {baseAny}func ( *trueAny) () error {return nil}func ( *trueAny) () bool {return true}func ( *trueAny) () int {return 1}func ( *trueAny) () int32 {return 1}func ( *trueAny) () int64 {return 1}func ( *trueAny) () uint {return 1}func ( *trueAny) () uint32 {return 1}func ( *trueAny) () uint64 {return 1}func ( *trueAny) () float32 {return 1}func ( *trueAny) () float64 {return 1}func ( *trueAny) () string {return "true"}func ( *trueAny) ( *Stream) {.WriteTrue()}func ( *trueAny) () *Iterator {return nil}func ( *trueAny) () interface{} {return true}func ( *trueAny) () ValueType {return BoolValue}func ( *trueAny) () Any {return}type falseAny struct {baseAny}func ( *falseAny) () error {return nil}func ( *falseAny) () bool {return false}func ( *falseAny) () int {return 0}func ( *falseAny) () int32 {return 0}func ( *falseAny) () int64 {return 0}func ( *falseAny) () uint {return 0}func ( *falseAny) () uint32 {return 0}func ( *falseAny) () uint64 {return 0}func ( *falseAny) () float32 {return 0}func ( *falseAny) () float64 {return 0}func ( *falseAny) () string {return "false"}func ( *falseAny) ( *Stream) {.WriteFalse()}func ( *falseAny) () *Iterator {return nil}func ( *falseAny) () interface{} {return false}func ( *falseAny) () ValueType {return BoolValue}func ( *falseAny) () Any {return}
![]() |
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. |