.. SPDX-FileCopyrightText: 2019-2020 Intel Corporation .. .. SPDX-License-Identifier: CC-BY-4.0 ====================================== Non-member lexicographical comparisons ====================================== .. code:: cpp template bool operator<( const concurrent_multimap& lhs, const concurrent_multimap& rhs ) **Returns**: ``true`` if ``lhs`` is lexicographically `less` than ``rhs``. ----------------------------------------------------- .. code:: cpp template bool operator<=( const concurrent_multimap& lhs, const concurrent_multimap& rhs ) **Returns**: ``true`` if ``lhs`` is lexicographically `less or equal` than ``rhs``. ----------------------------------------------------- .. code:: cpp template bool operator>( const concurrent_multimap& lhs, const concurrent_multimap& rhs ) **Returns**: ``true`` if ``lhs`` is lexicographically `greater` than ``rhs``. ----------------------------------------------------- .. code:: cpp template bool operator>=( const concurrent_multimap& lhs, const concurrent_multimap& rhs ) **Returns**: ``true`` if ``lhs`` is lexicographically `greater or equal` than ``rhs``.