MCPcopy Create free account
hub / github.com/boostorg/histogram / operator/

Function operator/

include/boost/histogram/arithmetic_operators.hpp:74–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73template <typename A, typename S>
74histogram<A, S> operator/(const histogram<A, S>& a, const double x) {
75 auto r = a;
76 r /= x;
77 return r;
78}
79
80} // namespace histogram
81} // namespace boost

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected