Not found
The exact documentation you were looking for could not be found. Here is the best guess.
pos=(p1)
public
Synonym for Dir#seek, but returns the position parameter.
d = Dir.new("testdir")
d.read
i = d.pos
d.read
d.pos = i
d.read
Show source
static VALUE
dir_set_pos(VALUE dir, VALUE pos)
{
dir_seek(dir, pos);
return pos;
}