Module: IO::generic_writable
Do not use. This module is for internal use only.
| Relationships & Source Files | |
| Extension / Inclusion / Inheritance Descendants | |
|
Included In:
| |
| Defined in: | ext/stringio/stringio.c |
Instance Method Summary
Instance Method Details
#<<
[ GitHub ]#printf
[ GitHub ]#puts
[ GitHub ]#syswrite
[ GitHub ]#write_nonblock(*args)
See IO#write_nonblock
# File 'ext/stringio/stringio.c', line 1991
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);
}