instance method StringIO#pos=

pos=(n)[permalink][rdoc][edit]

自身の位置を n に移動します。自身が表す文字列のサイズより大きくても構いません。

[PARAM] n:
自身の位置を整数で指定します。
[EXCEPTION] Errno::EINVAL:
n がマイナスである場合に発生します。


require "stringio"
a = StringIO.new("hoge", 'r+')
a.pos = 10
a << 'Z'
a.string                        #=> "hoge\000\000\000\000\000\000Z"