From: cuiweixie Date: Sun, 29 Jan 2023 08:42:17 +0000 (+0800) Subject: encoding/binary: add String and GoString method to nativeEndian X-Git-Tag: go1.21rc1~1728 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=848d658c45b185efb6742e51ba261cbba801b6ee;p=gostls13.git encoding/binary: add String and GoString method to nativeEndian Updates #57237 Change-Id: Ib626610130cae9c1d1aff5dd2a5035ffde0e127f Reviewed-on: https://go-review.googlesource.com/c/go/+/463985 Reviewed-by: Ian Lance Taylor Run-TryBot: xie cui <523516579@qq.com> TryBot-Result: Gopher Robot Run-TryBot: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Michael Knyszek --- diff --git a/src/encoding/binary/binary.go b/src/encoding/binary/binary.go index 0681511fbb..cb2ad1a7f8 100644 --- a/src/encoding/binary/binary.go +++ b/src/encoding/binary/binary.go @@ -210,6 +210,10 @@ func (bigEndian) String() string { return "BigEndian" } func (bigEndian) GoString() string { return "binary.BigEndian" } +func (nativeEndian) String() string { return "NativeEndian" } + +func (nativeEndian) GoString() string { return "binary.NativeEndian" } + // Read reads structured binary data from r into data. // Data must be a pointer to a fixed-size value or a slice // of fixed-size values.