absl::operator!=

Returns whether two fixed arrays are not elementwise equal.

Synopsis

Declared in <absl/container/fixed_array.h>

bool
operator!=(
    FixedArray const& lhs,
    FixedArray const& rhs);

Return Value

true if the arrays differ in size or elements.

Parameters

NameDescription
lhsThe left-hand fixed array.
rhsThe right-hand fixed array.