Inequality operators
Declared in <balm_integermetric.h>
Return true if the specified lhs and rhs metric ids do not have the same value and false otherwise. Two metric ids do not have same value if they refer to different MetricDescription object addresses, or exactly one address is 0.
bool
operator!=(
MetricId const& lhs,
MetricId const& rhs);
» more...
Return true if the specified lhs and rhs metric records do not have the same value and false otherwise. Two records do not have same value if they differ in their respective values for metricId, count, total, min, or max attributes.
bool
operator!=(
MetricRecord const& lhs,
MetricRecord const& rhs);
» more...
Return true if the specified lhs and rhs metrics do not have the same value and false otherwise. Two metrics do not have the same value if they record measurements using different collector objects or if one, but not both, have a null collector (i.e., collector() is 0).
bool
operator!=(
Metric const& lhs,
Metric const& rhs);
» more...
Return true if the specified lhs and rhs metric format specs do not have the same value, and false otherwise. Two format specs do not have same value if they differ in their respective values for scale or format attributes.
bool
operator!=(
MetricFormatSpec const& lhs,
MetricFormatSpec const& rhs);
» more...
Return true if the specified lhs and rhs metric formats do not have the same value, and false otherwise. Two metric formats do not have same value if they differ in their formatSpec for any of the enumerated publication types.
bool
operator!=(
MetricFormat const& lhs,
MetricFormat const& rhs);
» more...
Return true if the specified lhs and rhs integer metrics do not have the same value and false otherwise. Two integer metrics do not have the same value if they record measurements using different integer collector objects or if one, but not both, have a null collector (i.e., collector() is 0).
bool
operator!=(
IntegerMetric const& lhs,
IntegerMetric const& rhs);
» more...
Return true if the specified lhs and rhs sample groups do not have the same value, and false otherwise. Two sample groups do not have the same value if any of the respective record-sequence addresses, number of records, or elapsed time, are not the same.
bool
operator!=(
MetricSampleGroup const& lhs,
MetricSampleGroup const& rhs);
» more...
Return true if the specified lhs and rhs samples do not have the same value, and false otherwise. Two samples do not have the same value if they have different values for their timestamps, or number of record groups, or if any of the groups of records at corresponding indices have different values.
bool
operator!=(
MetricSample const& lhs,
MetricSample const& rhs);
» more...