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 "bucket_counts" values in the positive and negative Buckets plus the "zero_count" field.

Implementation

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

Implementation

@$pb.TagNumber(4)
set count($fixnum.Int64 value) => $_setInt64(3, value);