gpt4 book ai didi

c++ - boost 多索引 : lower_bound with value_type as argument

转载 作者:行者123 更新时间:2023-11-30 02:25:03 24 4
gpt4 key购买 nike

我想将 lower_bound 与 Boost MultiIndex 容器的 value_type 一起使用。到目前为止,我只能通过显式提取成员来完成这项工作:

#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/multi_index/member.hpp>
#include <string>

struct name {
std::string firstname;
std::string lastname;
name(const std::string & firstname, const std::string & lastname) :
firstname(firstname), lastname(lastname) {}
};

typedef boost::multi_index::multi_index_container<
name,
boost::multi_index::indexed_by<
boost::multi_index::ordered_unique<
boost::multi_index::composite_key<
name,
boost::multi_index::member<name, std::string, &name::lastname>,
boost::multi_index::member<name, std::string, &name::firstname>
>,
boost::multi_index::composite_key_compare<
std::less<std::string>,
std::less<std::string>
>
>
>
> NameIndex;

int main(void) {
NameIndex nameindex;
nameindex.insert(name("Alfred", "Ammer"));
nameindex.insert(name("Martin", "Mauser"));
// In my real code, I get this object passed.
name lookupname("Hans", "Hoffer");

// Does not compile
//auto it = nameindex.get<0>().lower_bound(lookupname);

// compiles, but I have to take explicitly list the members - in the right order
auto it = nameindex.get<0>().lower_bound(std::make_tuple(lookupname.lastname, lookupname.firstname));
}

如何避免提取成员?

最佳答案

auto it = nameindex.get<0>().lower_bound(
nameindex.get<0>().key_extractor()(lookupname));

关于c++ - boost 多索引 : lower_bound with value_type as argument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44886434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com