Source File
enc_int.go
Belonging Package
github.com/go-faster/jx
package jx
// Int encodes int.
func ( *Encoder) ( int) bool {
return .comma() ||
.w.Int()
}
// UInt encodes uint.
func ( *Encoder) ( uint) bool {
return .comma() ||
.w.UInt()
}
// UInt8 encodes uint8.
func ( *Encoder) ( uint8) bool {
return .comma() ||
.w.UInt8()
}
// Int8 encodes int8.
func ( *Encoder) ( int8) bool {
return .comma() ||
.w.Int8()
}
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |