-
Notifications
You must be signed in to change notification settings - Fork 0
feat: tuple map bindings #6
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
Conversation
This support faster lookup speeds as we are no longer using `std::any`.
|
Hey Mitchell, lets go over this in more detail during the week. There is quite a bit of code, and I'd like to understand the design decisions you made better by looking at it with you. Ideally, we'll get it to a point that I could pull it into Gateway and use it. |
test/speed.cpp
Outdated
| container.bind<symbols::symbolC>().to<ServiceC>(); | ||
|
|
||
| WHEN("the dependency is resolved") { | ||
| const int iterations = 100000000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw, Catch2 supports benchmarking natively. I have not tried it yet, but if you run your test binary with --help you'll see options for benchmarking.
No description provided.