Method: StringIO#internal_encoding
- Defined in:
- ext/stringio/stringio.c
#internal_encoding ⇒ Encoding
Returns the Encoding of the internal string if conversion is specified. Otherwise returns nil.
1757 1758 1759 1760 1761 |
# File 'ext/stringio/stringio.c', line 1757
static VALUE
strio_internal_encoding(VALUE self)
{
return Qnil;
}
|