mp_units::utility::constrained::operator-=

Subtracts rhs from the wrapped value.

Synopsis

Declared in <mp-units/utility/constrained.h>

constexpr
constrained&
operator-=(constrained const& rhs)
requires requires(T& a, const T b) {
      { a -= b } -> std::same_as<T&>;
    };

Return Value

a reference to *this, after the subtraction

Parameters

NameDescription
rhsthe value to subtract