[#bsl-List_DefaultLessThan] = xref:bsl.adoc[bsl]::List_DefaultLessThan :relfileprefix: ../ :mrdocs: Binary predicate type for comparing two `VALUE` objects using `operator<`. This operation is usually, but not always, the same as that provided by `std::less<VALUE>`. The standard requires that certain functions use `operator<`, which means that divergent specializations of `std::less` are to be ignored. == Synopsis Declared in `<bslstl_list.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class VALUE> struct List_DefaultLessThan; ---- == Member Functions [cols="1,4"] |=== | Name| Description | xref:bsl/List_DefaultLessThan/operator_call.adoc[`operator()`] | Return `true` if the value of the specified `lhs` is less than that of the specified `rhs`, and `false` otherwise. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#