method

write

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: buffer
write(*args) public

No documentation

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

Hide source
static VALUE
warning_write(int argc, VALUE *argv, VALUE buf)
{
    while (argc-- > 0) {
        rb_str_append(buf, *argv++);
    }
    return buf;
}
Register or log in to add new notes.