Compares a span to a container for inequality.

Synopsis

Declared in <absl/types/span.h>

template<
    typename T,
    typename U,
    typename = span_internal::EnableIfConvertibleTo<U, absl::Span<T const>>>
constexpr
bool
operator!=(
    Span<T> a,
    U const& b);

Return Value

true if the operands differ.

Parameters

Name

Description

a

The left operand.

b

The right operand.

Created with MrDocs