/*
 *  call-seq:
 *     sort.fields -> Array
 *
 *  Returns an array of the SortFields held by the Sort object.
 */
static VALUE
frt_sort_get_fields(VALUE self)
{
    GET_SORT();
    return object_get(sort->sort_fields);
}