Bin
Bin

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

Functions
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.

Variables
m_start
Value m_start

The start of the range of the bin.

m_end
Value m_end

The end of the range of the bin.

m_count
Value m_count

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

Functions
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.

Types
Bins

Typedef for a vector of Bin objects.