Module: IO::generic_writable

Included in:
StringIO
Defined in:
ext/stringio/stringio.c

Instance Method Summary collapse

Instance Method Details

#<<Object

#printfObject

#putsObject

#syswriteObject

#write_nonblock(*args) ⇒ Object



1703
1704
1705
1706
1707
1708
1709
1710
# File 'ext/stringio/stringio.c', line 1703

static VALUE
strio_syswrite_nonblock(int argc, VALUE *argv, VALUE self)
{
    VALUE str;

    rb_scan_args(argc, argv, "10:", &str, NULL);
    return strio_syswrite(self, str);
}