Flowdock
flush_next_in() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
rb_zstream_flush_next_in(VALUE obj)
{
    struct zstream *z;
    VALUE dst;

    TypedData_Get_Struct(obj, struct zstream, &zstream_data_type, z);
    dst = zstream_detach_input(z);
    OBJ_INFECT(dst, obj);
    return dst;
}
Register or log in to add new notes.