Method: StringIO#internal_encoding
- Defined in:
- stringio.c
#internal_encoding ⇒ Encoding
Returns the Encoding of the internal string if conversion is specified. Otherwise returns nil.
1459 1460 1461 1462 1463 |
# File 'stringio.c', line 1459
static VALUE
strio_internal_encoding(VALUE self)
{
return Qnil;
}
|