[#absl-operator_lt-0b] = xref:absl.adoc[absl]::operator< :relfileprefix: ../ :mrdocs: Tests whether the value of an inlined vector is less 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 less 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]#