[#absl-operator_not_eq-048f] = xref:absl.adoc[absl]::operator!= :relfileprefix: ../ :mrdocs: Checks the inequality of two `absl::StatusOr<T>` objects. == Synopsis Declared in `<absl/status/statusor.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> requires internal_statusor::IsEqualityComparable<T>::value bool operator!=( xref:absl/StatusOr.adoc[StatusOr<T>] const& lhs, xref:absl/StatusOr.adoc[StatusOr<T>] const& rhs); ---- == Return Value `true` if the operands are not equal. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The left‐hand operand. | *rhs* | The right‐hand operand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#