Flowdock
method

uniq

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Lazy
uniq() public

No documentation

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

Hide source
static VALUE
lazy_uniq(VALUE obj)
{
    rb_block_call_func *const func =
        rb_block_given_p() ? lazy_uniq_iter : lazy_uniq_func;
    return lazy_set_method(rb_block_call(rb_cLazy, id_new, 1, &obj,
                                         func, 0),
                           0, 0);
}
Register or log in to add new notes.