type encoding/binary.ByteOrder

9 uses

	encoding/binary (current package)
		binary.go#L39: type ByteOrder interface {
		binary.go#L240: func Read(r io.Reader, order ByteOrder, data any) error {
		binary.go#L279: func Decode(buf []byte, order ByteOrder, data any) (int, error) {
		binary.go#L312: func decodeFast(bs []byte, order ByteOrder, data any) bool {
		binary.go#L392: func Write(w io.Writer, order ByteOrder, data any) error {
		binary.go#L422: func Encode(buf []byte, order ByteOrder, data any) (int, error) {
		binary.go#L452: func Append(buf []byte, order ByteOrder, data any) ([]byte, error) {
		binary.go#L473: func encodeFast(bs []byte, order ByteOrder, data any) {
		binary.go#L744: 	order  ByteOrder