[#absl-operator_gt-07] = xref:absl.adoc[absl]::operator> :relfileprefix: ../ :mrdocs: 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>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, size_t N, typename A> bool operator>( xref:absl/InlinedVector.adoc[absl::InlinedVector<T, N, A>] const& a, xref:absl/InlinedVector.adoc[absl::InlinedVector<T, N, A>] const& b); ---- == Return Value `true` if `a` is greater than `b`, `false` otherwise. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The first inlined vector. | *b* | The second inlined vector. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#