This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
rewind()
public
Rewinds the enumeration sequence by the next method.
/*
* call-seq:
* e.rewind => e
*
* Rewinds the enumeration sequence by the next method.
*/
static VALUE
enumerator_rewind(obj)
VALUE obj;
{
rb_require("generator");
return rb_funcall(obj, rb_intern("rewind"), 0, 0);
}