Method: Seal::Stream#rewind

Defined in:
src/rubyext.c

#rewindObject

Rewinds stream to the beginning.



529
530
531
532
533
534
535
536
# File 'src/rubyext.c', line 529

static
VALUE
rewind_stream(VALUE rstream)
{
    seal_rewind_stream(DATA_PTR(rstream));

    return rstream;
}