我正在尝试根据boost hana 手册any
中的类型开关示例编写一个任意值开关。
我以前成功地做到了这一点,但现在似乎无法完成。
我真的很想弄清楚我的解决方案到底出了什么问题,所以事不宜迟:
struct default_val{
constexpr bool operator ==(const auto&) const noexcept{ return false; }
constexpr bool operator !=(const auto&) const noexcept{ return true; }
constexpr bool operator ==(default_val) const noexcept{ return true; }
constexpr bool operator !=(default_val) const noexcept{ return false; }
};
template<typename Fn>
auto default_(Fn fn){
return hana::make_pair(default_val{}, fn);
}
template<typename Val, typename Fn>
auto case_(Val val, Fn fn){
return hana::make_pair(val, fn);
}
template<typename Val, typename Default>
decltype(auto) process(Val&&, Default &&def){
return hana::second(std::forward<Default>(def))();
}
template<typename Val, typename Default, typename Case, typename ... Rest>
decltype(auto) process(Val &&val, Default &&def, Case &&cas, Rest &&... rest){
if(std::forward<Val>(val) == hana::first(std::forward<Case>(cas)))
return hana::second(std::forward<Case>(cas))();
else
return process(std::forward<Val>(val), std::forward<Default>(def), std::forward<Rest>(rest)...);
}
template<typename Val>
auto switch_(Val val){
return [val](auto ... cases){
auto cases_ = hana::make_tuple(cases...);
auto default_ = hana::find_if(cases_, [](const auto &c){
return
hana::type_c<default_val> ==
hana::type_c<std::decay_t<decltype(hana::first(c))>>;
});
static_assert(default_ != hana::nothing);
auto rest_ = hana::filter(cases_, [](const auto &c){
return
hana::type_c<default_val> !=
hana::type_c<std::decay_t<decltype(hana::first(c))>>;
});
return hana::unpack(rest_, [&](const auto &... rest){
return process(val, default_, rest...);
});
}
}
这应该像any
示例一样使用,但具有值:
#include "myswitch.hpp"
int main(){
std::string input;
std::cin >> input;
switch_(input)(
case_("yowza", []{ std::cout << "where's the enthusiasm?\n"; }),
case_("Yowza", []{ std::cout << "wat2hek\n"; }),
case_("YOWZA!", []{ std::cout << "HooRah!\n"; }),
default_([]{ std::cout << "Hello, World!\n"; })
);
}
但是我得到了一个关于在分配in时使用hana::find_if_t::operator()(Xs&&, Pred&&)
before deduction of的非常长而且非常神秘的错误。auto
default_
switch_
有人可以在这里指出我正确的方向吗?