//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // class value_compare // bool operator()( const value_type& lhs, const value_type& rhs ) const; #include #include #include #include template struct CallCompMember : Map::value_compare { CallCompMember(const typename Map::value_compare& vc) : Map::value_compare(vc) {} typedef typename Map::value_type value_type; bool operator()(const value_type& value1, const value_type& value2) const { return this->comp(value1.first, value2.first); } }; int main(int, char**) { typedef std::map map_type; map_type m; std::pair p1 = m.insert(map_type::value_type(1, "abc")); std::pair p2 = m.insert(map_type::value_type(2, "abc")); const map_type::value_compare vc = m.value_comp(); CallCompMember call_comp = m.value_comp(); assert(vc(*p1.first, *p2.first)); assert(call_comp(*p1.first, *p2.first)); assert(!vc(*p2.first, *p1.first)); assert(!call_comp(*p2.first, *p1.first)); return 0; }