io: rename Read/WriteBytes to Read/WriteB

go vet is not happy about them:
  pkg/io/binaryReader.go:92:21: method ReadByte() byte should have signature ReadByte() (byte, error)
  pkg/io/binaryWriter.go:75:21: method WriteByte(u8 byte) should have signature WriteByte(byte) error
This commit is contained in:
Roman Khimov 2019-12-12 20:17:50 +03:00
parent 0b14916d79
commit 8b3080b972
22 changed files with 70 additions and 70 deletions

View file

@ -71,8 +71,8 @@ func (w *BinWriter) WriteU16BE(u16 uint16) {
w.WriteBytes(w.u16)
}
// WriteByte writes a byte into the underlying io.Writer.
func (w *BinWriter) WriteByte(u8 byte) {
// WriteB writes a byte into the underlying io.Writer.
func (w *BinWriter) WriteB(u8 byte) {
w.u8[0] = u8
w.WriteBytes(w.u8)
}
@ -84,7 +84,7 @@ func (w *BinWriter) WriteBool(b bool) {
if b {
i = 1
}
w.WriteByte(i)
w.WriteB(i)
}
// WriteArray writes a slice or an array arr into w. Note that nil slices and
@ -123,22 +123,22 @@ func (w *BinWriter) WriteVarUint(val uint64) {
}
if val < 0xfd {
w.WriteByte(byte(val))
w.WriteB(byte(val))
return
}
if val < 0xFFFF {
w.WriteByte(byte(0xfd))
w.WriteB(byte(0xfd))
w.WriteU16LE(uint16(val))
return
}
if val < 0xFFFFFFFF {
w.WriteByte(byte(0xfe))
w.WriteB(byte(0xfe))
w.WriteU32LE(uint32(val))
return
}
w.WriteByte(byte(0xff))
w.WriteB(byte(0xff))
w.WriteU64LE(val)
}