Method: Klam::Primitives::Streams#read_byte
- Defined in:
- lib/klam/primitives/streams.rb
#read_byte(stream) ⇒ Object Also known as: read-byte
4 5 6 7 8 9 10 |
# File 'lib/klam/primitives/streams.rb', line 4 def read_byte(stream) if stream.eof? -1 else stream.readbyte end end |