type encoding/binary.ByteOrder
10 uses
encoding/binary (current package)
binary.go#L39: type ByteOrder interface {
binary.go#L258: func Read(r io.Reader, order ByteOrder, data any) error {
binary.go#L297: func Decode(buf []byte, order ByteOrder, data any) (int, error) {
binary.go#L330: func decodeFast(bs []byte, order ByteOrder, data any) bool {
binary.go#L410: func Write(w io.Writer, order ByteOrder, data any) error {
binary.go#L440: func Encode(buf []byte, order ByteOrder, data any) (int, error) {
binary.go#L470: func Append(buf []byte, order ByteOrder, data any) ([]byte, error) {
binary.go#L491: func encodeFast(bs []byte, order ByteOrder, data any) {
binary.go#L762: order ByteOrder
runtime/pprof
elf.go#L38: var byteOrder binary.ByteOrder