python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Using hana filter on tuple of types: "use of boost::hana::not_equal_t before deduction of auto"
I'm trying to filter a hana::tuple_t, which from my understanding is just a hana::tuple of hana::type objects.
I looked at some code from the example in the documentation, which is:
template <typen...
nog642
Votes: 0
Answers: 1
How to store boost::hana::map inside a class?
I want to store boost::hana::map inside a class so that I can write code like this inside the class:
if constexpr (boost::hana::contains(map_, "name"_s)){
std::cout << map_["n...
Igor Pugachev
Votes: 0
Answers: 1