Method: TCPSocket#write
- Defined in:
- ext/polyphony/socket_extensions.c
#write(*args) ⇒ Object
:nop-doc:
11 12 13 14 15 16 |
# File 'ext/polyphony/socket_extensions.c', line 11 VALUE Socket_write(int argc, VALUE *argv, VALUE self) { VALUE ary = rb_ary_new_from_values(argc, argv); VALUE result = Backend_sendv(BACKEND(), self, ary, INT2FIX(0)); RB_GC_GUARD(ary); return result; } |