Skip to content
New issue

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

[FR]: Make Combine generating custom types (CombineTo) #4728

Open
Stoorx opened this issue Feb 24, 2025 · 0 comments
Open

[FR]: Make Combine generating custom types (CombineTo) #4728

Stoorx opened this issue Feb 24, 2025 · 0 comments

Comments

@Stoorx
Copy link

Stoorx commented Feb 24, 2025

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:

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")));

Describe the proposal.

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.

Maybe it is better to rename to CombineAs.

Is the feature specific to an operating system, compiler, or build system version?

No

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant