string()
public
Returns underlying String object, the subject of
IO.
Show source
/*
* call-seq: strio.string -> string
*
* Returns underlying String object, the subject of IO.
*/
static VALUE
strio_get_string(self)
VALUE self;
{
return StringIO(self)->string;
}