Appends to the extra message that will be added to the original status.
Declared in <absl/status/status_builder.h>
template<typename T>
[[nodiscard]]
StatusBuilder&&
operator<<(T const& value) &&;
By default, the extra message is added to the original message as if by util::Annotate, which includes a convenience separator between the original message and the enriched one.
| Name | Description |
|---|---|
| value | The value to append to the extra message. |