[#BloombergLP-balm-Collector-accumulateCountTotalMinMax] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/balm.adoc[balm]::xref:BloombergLP/balm/Collector.adoc[Collector]::accumulateCountTotalMinMax :relfileprefix: ../../../ :mrdocs: Accumulate the specified count, total, min, and max into this collector. == Synopsis Declared in `<balm_collector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void accumulateCountTotalMinMax( int count, double total, double min, double max); ---- == Description Increment the event count by the specified `count`, add the specified `total` to the accumulated total, if specified `min` is less than the minimum value, set `min` to be the minimum value, and if specified `max` is greater than the maximum value, set `max` to be the maximum value. == Parameters [cols="1,4"] |=== | Name| Description | *count* | number of events to add to the event count | *total* | amount to add to the accumulated total | *min* | candidate minimum measurement value | *max* | candidate maximum measurement value |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#