Equality operators
Synopses
Declared in <balm_integermetric.h>
Return true if the specified lhs and rhs metric ids have the same value and false otherwise. Two metric ids have the same value if they each hold the address of the same MetricDescription object, or both addresses are 0.
bool
operator==(
MetricId const& lhs,
MetricId const& rhs);
Return true if the specified lhs and rhs metric records have the same value and false otherwise. Two records have the same value if they have the same values for their metricId, count, total, min, and max attributes, respectively.
bool
operator==(
MetricRecord const& lhs,
MetricRecord const& rhs);
Return true if the specified lhs and rhs metrics have the same value and false otherwise. Two metrics have the same value if they record measurements using the same collector object or if they both have a null collector (i.e., collector() is 0).
bool
operator==(
Metric const& lhs,
Metric const& rhs);
Return true if the specified lhs and rhs metric format specs have the same value, and false otherwise. Two format specs have the same value if they have the same values for their scale and format attributes, respectively.
bool
operator==(
MetricFormatSpec const& lhs,
MetricFormatSpec const& rhs);
Return true if the specified lhs and rhs metric formats have the same value, and false otherwise. Two metric formats have the same value if they have the same value for formatSpec for each of the enumerated publication types.
bool
operator==(
MetricFormat const& lhs,
MetricFormat const& rhs);
Return true if the specified lhs and rhs integer metrics have the same value and false otherwise. Two integer metrics have the same value if they record measurements using the same integer collector object or if they both have null collectors (i.e., collector() is 0).
bool
operator==(
IntegerMetric const& lhs,
IntegerMetric const& rhs);
Return true if the specified lhs and rhs sample groups have the same value, and false otherwise. Two sample groups have the same value if the respective record sequence‐addresses, number of records, and elapsed time are the same.
bool
operator==(
MetricSampleGroup const& lhs,
MetricSampleGroup const& rhs);
Return true if the specified lhs and rhs samples have the same value, and false otherwise. Two samples have the same value if they have the same timestamp value, contain the same number of record groups, and if the respective groups of records at each index position have the same value.
bool
operator==(
MetricSample const& lhs,
MetricSample const& rhs);
Created with MrDocs