Multiplication assignment operators
Declared in <absl/time/time.h>
Multiplies this duration by a floating-point factor.
Duration&
operator*=(double r);
» more...
Multiplies this duration by an integer factor.
Duration&
operator*=(int64_t r);
» more...
Multiplies this duration by a floating-point factor, forwarding to the double overload.
template<
typename T,
/* implementation-defined */ = 0>
Duration&
operator*=(T r);
» more...
Multiplies this duration by an integral factor, forwarding to the int64_t overload.
template<
typename T,
/* implementation-defined */ = 0>
Duration&
operator*=(T r);
» more...
A reference to this duration.
| Name | Description |
|---|---|
| r | The factor to multiply by. |