Source File
byteorder.go
Belonging Package
github.com/tmc/go-iroh/internal/itls/shim/byteorder
// Package byteorder is a minimal shim for the GOROOT-private internal/byteorder,// providing just the little-endian uint32 reader that the vendored crypto/tls// uses.package byteorder// LEUint32 reads a little-endian uint32 from the first 4 bytes of b.func ( []byte) uint32 {_ = [3]return uint32([0]) | uint32([1])<<8 | uint32([2])<<16 | uint32([3])<<24}
![]() |
The pages are generated with Golds v0.8.4. (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. |