bounds property

  1. @TagNumber.new(1)
PbList<double> get bounds

'bound' is a list of strictly increasing boundaries between buckets. Note that a list of length N-1 defines N buckets because of fenceposting. See comments on bucket_options for details.

The i'th finite bucket covers the interval [boundi-1, boundi) where i ranges from 1 to bound_size() - 1. Note that there are no finite buckets at all if 'bound' only contains a single element; in that special case the single bound defines the boundary between the underflow and overflow buckets.

bucket number lower bound upper bound i == 0 (underflow) -inf boundi 0 < i < bound_size() boundi-1 boundi i == bound_size() (overflow) boundi-1 +inf

Implementation

@$pb.TagNumber(1)
$pb.PbList<$core.double> get bounds => $_getList(0);