MCPcopy Create free account
hub / github.com/apache/trafficserver / operator+=

Method operator+=

include/tsutil/Histogram.h:130–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128
129template <auto R, auto S>
130auto
131Histogram<R, S>::operator+=(self_type const &that) -> self_type &
132{
133 auto dst = _bucket.data();
134 auto src = that._bucket.data();
135 for (raw_type idx = 0; idx < N_BUCKETS; ++idx) {
136 *dst++ += *src++;
137 }
138 return *this;
139}
140
141template <auto R, auto S>
142auto

Callers

nothing calls this directly

Calls 1

dataMethod · 0.45

Tested by

no test coverage detected