instance method StringIO#each_byte

each_byte {|ch| ... } -> self[permalink][rdoc][edit]
each_byte -> Enumerator

自身から 1 バイトずつ読み込み、整数 ch に変換し、それを引数として与えられたブロックを実行します。

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


require "stringio"
a = StringIO.new("hoge")
a.each_byte{|ch| p ch }
#=> 104
#   111
#   103
#   101

[SEE_ALSO] IO#each_byte