absl::StatusBuilder::operator<<

Appends to the extra message that will be added to the original status.

Synopses

Declared in <absl/status/status_builder.h>

Appends to the extra message that will be added to the original status.

template<typename T>
StatusBuilder&
operator<<(T const& value) &;
» more...

Appends to the extra message that will be added to the original status.

template<typename T>
[[nodiscard]]
StatusBuilder&&
operator<<(T const& value) &&;
» more...

Return Value

*this to allow method chaining.

Parameters

NameDescription
valueThe value to append to the extra message.