Is there an alternative to boost-hana in boost library which will allow me to create something like
typedef boost::AlterinativeToHana::map< make_pair<"abcd",ABCDType>,
make_pair<"efgh",EFGHType>,
make_pair<"ijkl",IJKLType>
> stringToTypeMap;
I have used boost-fusion, but I could not find a proper solution for my use case i.e character string to type mapping.