Method: Enumerator::Yielder#yield
- Defined in:
- enumerator.c
#yield(args) ⇒ Object
:nodoc:
1359 1360 1361 1362 1363 1364 1365 |
# File 'enumerator.c', line 1359
static VALUE
yielder_yield(VALUE obj, VALUE args)
{
struct yielder *ptr = yielder_ptr(obj);
return rb_proc_call_kw(ptr->proc, args, RB_PASS_CALLED_KEYWORDS);
}
|