method

filter

ruby latest stable - Class: Enumerator::Lazy

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

filter()
public

No documentation available.

static VALUE
lazy_select(VALUE obj)
{
    if (!rb_block_given_p()) {
        rb_raise(rb_eArgError, "tried to call lazy select without a block");
    }

    return lazy_add_method(obj, 0, 0, Qnil, Qnil, &lazy_select_funcs);
}