/*
 * Lists the records inside the result set.
 *
 * Returns: an array of ZOOM::Record objects.
 */
static VALUE
rbz_resultset_records (VALUE self)
{
    VALUE argv [2];

    argv [0] = INT2FIX (0);
    argv [1] = rbz_resultset_size (self);
    
    return rbz_resultset_index (2, argv, self);
}