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