encoding/binary.encoder.uint64 (method)
6 uses
encoding/binary (current package)
binary.go#L519: func (e *encoder) uint64(x uint64) {
binary.go#L538: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
binary.go#L659: e.uint64(v.Uint())
binary.go#L667: e.uint64(math.Float64bits(v.Float()))
binary.go#L678: e.uint64(math.Float64bits(real(x)))
binary.go#L679: e.uint64(math.Float64bits(imag(x)))
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |