| Class | IO |
| In: |
readbytes.rb
|
| Parent: | Object |
Reads exactly n bytes.
If the data read is nil an EOFError is raised.
If the data read is too short a TruncatedDataError is raised and the read data is obtainable via its data method.
# File readbytes.rb, line 20 def readbytes(n) str = read(n) if str == nil raise EOFError, "End of file reached" end if str.size < n raise TruncatedDataError.new("data truncated", str) end str end
ruby-doc.org is a community service provided by James Britt and Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.