We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I'd appreciate having the repeat argument accepted as a variable:
std::string ss{"abcd"}; int k{4}; iter::product(ss,k); //instead of... std::string ss{"abcd"}; iter::product<4>(ss); // has to be entered manually!