Bin
Bin

Represents a single bin, which has a start, end, and count.

Bin
Bin(
const Value &start,
const Value &end,
const Value &count
)

Creates a Bin object.

Parameters
start
const Value&

The start of the range of the bin.

end
const Value&

The end of the range of the bin.

count
const Value&

The number of values that fall within the range of this bin.

start
Value start() const

Gets the start of the range of the bin.

Returns

The start of the range of the bin, as a Value object.

end
Value end() const

Gets the end of the range of the bin.

Returns

The end of the range of the bin, as a Value object.

count
Value count() const

Gets the number of values that fall within the range of this bin.

Returns

The number of values that fall within the range of this bin.

Bins

Typedef for a vector of Bin objects.