Left shift operators
Declared in <absl/status/status_builder.h>
Appends to the extra message that will be added to the original status.
template<typename T>
ExtraMessage&
operator<<(T const& value) &;
» more...
Appends to the extra message, preserving the rvalue-ness of the object.
template<typename T>
ExtraMessage&&
operator<<(T const& value) &&;
» more...
*this to allow method chaining.
| Name | Description |
|---|---|
| value | The value to append to the extra message. |