[#bsl-multimap-0ae-value_compare-operator_call] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::xref:bsl/multimap-0ae/value_compare.adoc[value_compare]::operator() :relfileprefix: ../../../ :mrdocs: Return whether `x` is ordered before `y` by key. == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator()( xref:bsl/multimap-0ae/value_type.adoc[value_type] const& x, xref:bsl/multimap-0ae/value_type.adoc[value_type] const& y) const; ---- == Description Return `true` if the specified `x` object is ordered before the specified `y` object, as determined by the comparator supplied at construction, and `false` otherwise. == Return Value `true` if `x` is ordered before `y` == Parameters [cols="1,4"] |=== | Name| Description | *x* | first value to compare | *y* | second value to compare |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#