Flowdock
binmode() public

No documentation

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

Hide source
static VALUE
strio_binmode(VALUE self)
{
    struct StringIO *ptr = StringIO(self);
    rb_encoding *enc = rb_ascii8bit_encoding();

    if (WRITABLE(self)) {
        rb_enc_associate(ptr->string, enc);
    }
    return self;
}
Register or log in to add new notes.