-
Notifications
You must be signed in to change notification settings - Fork 28
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
C++20 version of upcoming C++23 std::expected #239
Conversation
…ected; replacing tl::expected
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.
Just a couple of questions
Codecov ReportBase: 0.17% // Head: 0.17% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.01 #239 +/- ##
===============================================
- Coverage 0.17% 0.17% -0.01%
===============================================
Files 401 402 +1
Lines 14860 14968 +108
Branches 8136 8136
===============================================
Hits 26 26
- Misses 14834 14942 +108
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@gpucibot merge |
Implementation based on the work of jbaldwin/libcoro. The reason for the fork is due to the fact that we will need to touch every awaitable object to apply a MRC context. The other major difference is ThreadPool/Scheduler/Executor discovery and a new SchedulingPolicy that will enable us to replicate boost::fiber behaviors in some critical places where coroutines will eventually replace fibers. Blocked by #239 Authors: - Ryan Olson (https://github.com/ryanolson) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: #244
tl::expected