Method: StringIO#sync

Defined in:
ext/stringio/stringio.c

#synctrue

Returns true; implemented only for compatibility with other stream classes.

Returns:

  • (true)


824
825
826
827
828
829
# File 'ext/stringio/stringio.c', line 824

static VALUE
strio_get_sync(VALUE self)
{
    StringIO(self);
    return Qtrue;
}