mirror of https://github.com/golang/go.git
named argument
Change-Id: I5bd7364a71cf0293c9c3b06de6e85632c4aa4a43
This commit is contained in:
parent
0eb1bae085
commit
d6beafaa76
|
|
@ -44,7 +44,7 @@ type BinaryAppender interface {
|
||||||
// (allocating a larger slice if necessary) and returns the updated slice.
|
// (allocating a larger slice if necessary) and returns the updated slice.
|
||||||
//
|
//
|
||||||
// Implementations must not retain b, nor mutate any bytes within b[:len(b)].
|
// Implementations must not retain b, nor mutate any bytes within b[:len(b)].
|
||||||
AppendBinary([]byte) ([]byte, error)
|
AppendBinary(b []byte) ([]byte, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TextMarshaler is the interface implemented by an object that can
|
// TextMarshaler is the interface implemented by an object that can
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue