From: Joe Tsai Date: Thu, 3 Mar 2022 05:26:36 +0000 (-0800) Subject: api: update next.txt for binary.AppendByteOrder interface X-Git-Tag: go1.19beta1~1176 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef92828bb9ffd77d6f08e402225557256b11cfad;p=gostls13.git api: update next.txt for binary.AppendByteOrder interface CL 386017 added new API for encoding/binary package. This file was accidentally not updated in the same CL. Updates #50601 Change-Id: Iefeb596ba04b8c6576cf0fe42030f658a5848832 Reviewed-on: https://go-review.googlesource.com/c/go/+/389636 Trust: Joseph Tsai Run-TryBot: Joseph Tsai TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov --- diff --git a/api/next.txt b/api/next.txt index e69de29bb2..23fd98a9ba 100644 --- a/api/next.txt +++ b/api/next.txt @@ -0,0 +1,5 @@ +pkg encoding/binary, type AppendByteOrder interface { AppendUint16, AppendUint32, AppendUint64, String } +pkg encoding/binary, type AppendByteOrder interface, AppendUint16([]uint8, uint16) []uint8 +pkg encoding/binary, type AppendByteOrder interface, AppendUint32([]uint8, uint32) []uint8 +pkg encoding/binary, type AppendByteOrder interface, AppendUint64([]uint8, uint64) []uint8 +pkg encoding/binary, type AppendByteOrder interface, String() string