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);
}