Method: AudioTag::ID3::StreamReader#read_bytes_until
- Defined in:
- lib/audio_tag/id3/stream_reader.rb
#read_bytes_until(byte) ⇒ Object
83 84 85 86 87 88 89 |
# File 'lib/audio_tag/id3/stream_reader.rb', line 83 def read_bytes_until(byte) pos = stream.pos read_bytes_until!(byte) ensure stream.seek(pos) end |