ios.getbyte â fixnum or nil
Instance Public methods
Gets the next 8-bit byte (0..255) from ios. Returns
nil
if called at end of file.
f = File.new("testfile") f.getbyte #=> 84 f.getbyte #=> 104
Gets the next 8-bit byte (0..255) from ios. Returns
nil
if called at end of file.
f = File.new("testfile") f.getbyte #=> 84 f.getbyte #=> 104
Please login to continue.