Appends to the extra message that will be added to the original status.
Synopsis
Declared in <absl/status/status_builder.h>
template<typename T>
[[nodiscard]]
StatusBuilder&&
operator<<(T const& value) &&;
Description
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.
Return Value
*this to allow method chaining.
|
Note
|
The return value should not be discarded. |
Parameters
Name |
Description |
value |
The value to append to the extra message. |
Created with MrDocs