We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine
I did not find that functionality.
It would be more handy to write:
struct MyStruct { int a; std::string b; }; ParamGenerator<MyStruct> gen = CombineTo<MyStruct>(Values(1, 2, 3), Values("a", "b", "c"));
Than:
struct MyStruct { int a; std::string b; using TupleT = std::tuple<int, std::string>; MyStruct(const TupleT& t): a(std::get<0>(t)), b(std::get<1>(t)) {} }; ParamGenerator<MyStruct> gen = ConvertGenerator<MyStruct::TupleT>(Combine(Values(1, 2, 3), Values("a", "b", "c")));
Actually I have already developed it. #4727
In two words: I have introduced a new function CombineTo and refactored CartesianProductGenerator to support custom types instantiation.
CombineTo
CartesianProductGenerator
Maybe it is better to rename to CombineAs.
CombineAs
No
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Does the feature exist in the most recent commit?
I did not find that functionality.
Why do we need this feature?
It would be more handy to write:
Than:
Describe the proposal.
Actually I have already developed it. #4727
In two words: I have introduced a new function
CombineTo
and refactoredCartesianProductGenerator
to support custom types instantiation.Maybe it is better to rename to
CombineAs
.Is the feature specific to an operating system, compiler, or build system version?
No
The text was updated successfully, but these errors were encountered: