rank property

  1. @TagNumber(2)
Int64 rank

Rank is 0-based i.e. when sort order is descending the rank of the value with the highest score will be 0. Similarly for ascending order, value with the lowest score will have rank 0.

Implementation

@$pb.TagNumber(2)
$fixnum.Int64 get rank => $_getI64(1);
  1. @TagNumber(2)
void rank=(Int64 v)

Implementation

@$pb.TagNumber(2)
set rank($fixnum.Int64 v) {
  $_setInt64(1, v);
}