Flowdock
method

drop_while

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: Lazy
drop_while() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
lazy_drop_while(VALUE obj)
{
    if (!rb_block_given_p()) {
        rb_raise(rb_eArgError, "tried to call lazy drop_while without a block");
    }

    return lazy_add_method(obj, 0, 0, Qfalse, Qnil, &lazy_drop_while_funcs);
}
Register or log in to add new notes.