Byte reads a byte. This is equivalent to Uint8, but is included since it is more common to refer to a byte rather than a uint8.
()
| 93 | // Byte reads a byte. This is equivalent to Uint8, but is included since it is more common to refer to a byte rather |
| 94 | // than a uint8. |
| 95 | func (reader *Reader) Byte() byte { |
| 96 | return reader.Uint8() |
| 97 | } |
| 98 | |
| 99 | // Float32 reads a float32. |
| 100 | func (reader *Reader) Float32() float32 { |
no test coverage detected