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
Is it possible to bind a vector of instances like that?
std::vector<std::shared_ptr<Interface>> values = {...}; boost::di::bind<Interface*[]>.to(values) // <--
The text was updated successfully, but these errors were encountered:
I did some experiments and don't see it working.
There is an example with ints but it doesn't fork for array.
int
However, you still can use DI for interface bindings like this:
auto injector = di::make_injector( di::bind<i1*[]>().to<impl, impl1>() );
Sorry, something went wrong.
@Warchant @kanstantsin-chernik Did you find any workaround to this problem using already created instances?
The vector seems to be default-constructed and the instance passed to di::bind is not used.
Thanks in advance
No branches or pull requests
Is it possible to bind a vector of instances like that?
The text was updated successfully, but these errors were encountered: