type encoding/binary.ByteOrder

11 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

	github.com/gotd/td/session/tdesktop
		file.go#L150: func readArray(data []byte, order binary.ByteOrder) (array []byte, n int, _ error) {
		file.go#L167: func writeArray(writer io.Writer, data []byte, order binary.ByteOrder) error {