Method: StringIO#sync
- Defined in:
- ext/stringio/stringio.c
#sync ⇒ true
Returns true; implemented only for compatibility with other stream classes.
823 824 825 826 827 828 |
# File 'ext/stringio/stringio.c', line 823 static VALUE strio_get_sync(VALUE self) { StringIO(self); return Qtrue; } |