scale property

  1. @TagNumber.new(6)
int get scale

scale describes the resolution of the histogram. Boundaries are located at powers of the base, where:

base = (2^(2^-scale))

The histogram bucket identified by index, a signed integer, contains values that are greater than (base^index) and less than or equal to (base^(index+1)).

The positive and negative ranges of the histogram are expressed separately. Negative values are mapped by their absolute value into the negative range using the same scale as the positive range.

scale is not restricted by the protocol, as the permissible values depend on the range of the data.

Implementation

@$pb.TagNumber(6)
$core.int get scale => $_getIZ(5);
  1. @TagNumber.new(6)
set scale (int v)

Implementation

@$pb.TagNumber(6)
set scale($core.int v) {
  $_setSignedInt32(5, v);
}