count property

  1. @TagNumber.new(4)
Int64 get count

count is the number of values in the population. Must be non-negative. This value must be equal to the sum of the "count" fields in buckets if a histogram is provided.

Implementation

@$pb.TagNumber(4)
$fixnum.Int64 get count => $_getI64(2);
  1. @TagNumber.new(4)
set count (Int64 v)

Implementation

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