= private = protected
closed_write?()
Returns true if strio is not writable, false otherwise.
static VALUE strio_closed_write(VALUE self) { struct StringIO *ptr = StringIO(self); if (WRITABLE(ptr)) return Qfalse; return Qtrue; }