If I have the following recursive function in Ruby:
...
def recurse(*args)
yield self if condition_based_on_args
if has_children?
@children.each do |child|
child.recurse(*args) { |y| yield y }
end
end
end
...
How would I go about achieving the equivalent behavior in C? I have been unsuccessful in implementing this with simple external iterators; How do I reproduce yield's behavior to "pop" from the nested children up to the iterator?
I found the snippet below, and understand what it does, but I have trouble grasping how to apply it to the problem I am trying to solve and how it works from a C perspective. Can somebody explain?
static VALUE
call_foreach(VALUE args)
{
return rb_funcall2(rb_cIO, rb_intern("foreach"), 2, (VALUE *)args);
}
static VALUE
yield_block(VALUE val, VALUE block)
{
return rb_funcall2(block, rb_intern("call"), 1, &val);
}
static VALUE
my_method(int argc, VALUE* argv, VALUE self)
{
VALUE args[2], block;
rb_scan_args(argc, argv, "01&", &args[1], &block);
args[0] = self;
return rb_iterate(call_foreach, (VALUE)args, yield_block, block);
}