absl::operator>

Tests whether the value of an inlined vector is greater than the value of another inlined vector using a lexicographical comparison algorithm.

Synopsis

Declared in <absl/container/inlined_vector.h>

template<
    typename T,
    size_t N,
    typename A>
bool
operator>(
    absl::InlinedVector<T, N, A> const& a,
    absl::InlinedVector<T, N, A> const& b);

Return Value

true if a is greater than b, false otherwise.

Parameters

NameDescription
aThe first inlined vector.
bThe second inlined vector.