instance method StringIO#getbyte

getbyte -> Integer | nil[permalink][rdoc][edit]

自身から 1 文字読み込んで、その文字に対応する Fixnum を返します。文字列の終端に到達した時には nil を返します。

[EXCEPTION] IOError:
自身が読み取り不可なら発生します。


require "stringio"
a = StringIO.new("ho")
a.getbyte                #=> 104
a.getbyte                #=> 111
a.getbyte                #=> nil